blob: 1cab85c658c19b5ae916e4716ee77c1f93f6ef7f (
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
|
-- File: Plate_LineConstraint.cdl
-- Created: Thu May 7 11:33:37 1998
-- Author: Andre LIEUTIER
-- <alr@sgi63>
---Copyright: Matra Datavision 1998
class LineConstraint from Plate
---Purpose: constraint a point to belong to a straight line
--
--
uses
XY from gp,
Lin from gp,
LinearScalarConstraint from Plate
is
Create(point2d : XY ; lin : Lin from gp;
iu : Integer = 0; iv : Integer = 0) returns LineConstraint;
-- constraint the iu th derivative in u and iv th derivative in v at
-- the point2d parametre to belong to the lin line.
-- Accessors :
LSC(me) returns LinearScalarConstraint ;
---C++: inline
---C++: return const &
fields
myLSC : LinearScalarConstraint;
end;
|