blob: 1751917c74c1f687b7df3b4e03b63bfe391e6006 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// File: StepToTopoDS_PointPair.cxx
// Created: Fri Aug 6 12:45:32 1993
// Author: Martine LANGLOIS
// <mla@mastox>
#include <StepToTopoDS_PointPair.ixx>
//=======================================================================
//function : StepToTopoDS_PointPair
//purpose :
//=======================================================================
StepToTopoDS_PointPair::StepToTopoDS_PointPair
(const Handle(StepGeom_CartesianPoint)& P1,
const Handle(StepGeom_CartesianPoint)& P2) :
myP1(P1),
myP2(P2)
{
}
|