blob: e1e9b1127c7e34403d147580dd9d7c496cacf87d (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
-- File: GeomToIGES_GeomVector.cdl
-- Created: Fri Nov 18 11:33:11 1994
-- Author: Marie Jose MARTZ
-- <mjm@minox>
---Copyright: Matra Datavision 1994
class GeomVector from GeomToIGES inherits GeomEntity from GeomToIGES
---Purpose: This class implements the transfer of the Vector from Geom
-- to IGES . These can be :
-- . Vector
-- * Direction
-- * VectorWithMagnitude
uses
Vector from Geom,
VectorWithMagnitude from Geom,
Direction from Geom,
Direction from IGESGeom,
GeomEntity from GeomToIGES
is
Create returns GeomVector from GeomToIGES;
Create(GE : GeomEntity from GeomToIGES)
returns GeomVector from GeomToIGES;
---Purpose : Creates a tool GeomVector ready to run and sets its
-- fields as GE's.
TransferVector (me : in out;
start : Vector from Geom)
returns mutable Direction from IGESGeom;
---Purpose : Transfert a GeometryEntity which answer True to the
-- member : BRepToIGES::IsGeomVector(Geometry). If this
-- Entity could not be converted, this member returns a NullEntity.
TransferVector (me : in out;
start : VectorWithMagnitude from Geom)
returns mutable Direction from IGESGeom;
TransferVector (me : in out;
start : Direction from Geom)
returns mutable Direction from IGESGeom;
end GeomVector;
|