Integration of OCCT 6.5.0 from SVN
[occt.git] / src / Plate / Plate_PlaneConstraint.cdl
1 -- File:        Plate_PlaneConstraint.cdl
2 -- Created:     Wed May  6 19:12:10 1998
3 -- Author:      Andre LIEUTIER
4 --              <alr@sgi63>
5 ---Copyright:    Matra Datavision 1998
6
7
8
9 class PlaneConstraint from Plate
10 ---Purpose: constraint a point to belong to a Plane
11 --          
12
13 uses 
14  XY from gp, 
15  Pln  from  gp,
16  LinearScalarConstraint from Plate
17
18 is
19     Create(point2d : XY ; pln  :  Pln  from  gp; 
20            iu : Integer = 0; iv : Integer = 0) returns PlaneConstraint;
21 -- constraint the iu th derivative in u  and iv th  derivative in v at
22 -- the point2d parametre to belong to the pln plane.
23
24     -- Accessors :
25     LSC(me) returns  LinearScalarConstraint ;
26     ---C++: inline 
27     ---C++: return const &
28
29 fields
30     myLSC : LinearScalarConstraint;    
31 end;
32