0022627: Change OCCT memory management defaults
[occt.git] / src / PGeom / PGeom_VectorWithMagnitude.cdl
1 -- File:        PGeom_VectorWithMagnitude.cdl
2 -- Created:     Mon Feb 22 17:40:00 1993
3 -- Author:      Philippe DAUTRY
4 --              <fid@phobox>
5 -- Copyright:    Matra Datavision 1993
6
7
8 class VectorWithMagnitude from PGeom inherits Vector from PGeom
9
10         ---Purpose : Defines a vector  with  magnitude.  A vector with
11         --         magnitude can have a zero length.
12         --         
13         ---See Also : VectorWithMagnitude from Geom.
14
15 uses Vec from gp
16
17 is
18
19
20   Create returns mutable VectorWithMagnitude;
21         ---Purpose : Creates a VectorWithMagnitude with default values.
22         ---Level: Internal 
23
24
25   Create (aVec : Vec) returns mutable VectorWithMagnitude;
26         ---Purpose : Creates a VectorWithMagnitude with <aVec>.
27         ---Level: Internal 
28
29
30 end;