Integration of OCCT 6.5.0 from SVN
[occt.git] / src / GeomFill / GeomFill_QuasiAngularConvertor.cdl
1 -- File:        GeomFill_QuasiAngularConvertor.cdl
2 -- Created:     Wed Aug  6 09:28:30 1997
3 -- Author:      Philippe MANGIN
4 --              <pmn@sgi29>
5 ---Copyright:    Matra Datavision 1997
6
7
8 private  class QuasiAngularConvertor from GeomFill 
9
10         ---Purpose: To convert circular section in QuasiAngular Bezier
11         --          form   
12
13 uses
14     Matrix from math, 
15     Vector from  math,
16     Pnt from gp,
17     Vec from gp,  
18     Array1OfReal from  TColStd,
19     Array1OfPnt  from TColgp,
20     Array1OfVec  from TColgp
21
22 raises NotDone from StdFail
23
24 is
25     Create returns QuasiAngularConvertor from GeomFill;
26     
27     Initialized(me) 
28     ---Purpose: say if <me> is Initialized
29     returns Boolean;
30     
31     Init(me: in out);
32     
33     Section(me  :  in  out;
34             FirstPnt : Pnt from gp;
35             Center   : Pnt from gp;
36             Dir      : Vec from gp;
37             Angle    : Real from Standard;
38             Poles    : out Array1OfPnt  from TColgp; 
39             Weights  : out Array1OfReal from TColStd);
40             
41     Section(me:  in  out;
42             FirstPnt  : Pnt from gp;
43             DFirstPnt : Vec from gp;
44             Center    : Pnt from gp;
45             DCenter   : Vec from gp;
46             Dir       : Vec from gp;
47             DDir      : Vec from gp;
48             Angle     : Real from Standard;
49             DAngle    : Real from Standard;
50             Poles     : out Array1OfPnt   from TColgp;
51             DPoles    : out Array1OfVec   from TColgp; 
52             Weights   : out Array1OfReal from TColStd; 
53             DWeights  : out Array1OfReal from TColStd);
54             
55      Section(me  :  in  out;
56             FirstPnt  : Pnt from gp;
57             DFirstPnt : Vec from gp;
58             D2FirstPnt: Vec from gp;
59             Center    : Pnt from gp;
60             DCenter   : Vec from gp;
61             D2Center  : Vec from gp;
62             Dir       : Vec from gp;
63             DDir      : Vec from gp;
64             D2Dir     : Vec from gp;
65             Angle     : Real from Standard;
66             DAngle    : Real from Standard;
67             D2Angle   : Real from Standard;
68             Poles     : out Array1OfPnt   from TColgp;
69             DPoles    : out Array1OfVec   from TColgp;
70             D2Poles   : out Array1OfVec   from TColgp; 
71             Weights   : out Array1OfReal from TColStd; 
72             DWeights  : out Array1OfReal from TColStd; 
73             D2Weights : out Array1OfReal from TColStd);             
74  
75 fields  
76     myinit : Boolean from Standard;
77     B       : Matrix from math;  
78     Px,  Py,  W,  Vx,  Vy, Vw : Vector  from  math; 
79 end QuasiAngularConvertor;