blob: 54f9b795df4ce876f3cb6f0ea831c79092cb686e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
-- File: StepToTopoDS_PointPair.cdl
-- Created: Fri Aug 6 12:38:21 1993
-- Author: Martine LANGLOIS
-- <mla@mastox>
---Copyright: Matra Datavision 1993
class PointPair from StepToTopoDS
---Purpose: Stores a pair of Points from step
uses
CartesianPoint from StepGeom
is
Create(P1, P2 : CartesianPoint from StepGeom)
returns PointPair from StepToTopoDS;
fields
myP1 : CartesianPoint from StepGeom;
myP2 : CartesianPoint from StepGeom;
friends
class PointPairHasher from StepToTopoDS
end PointPair;
|