blob: 2d68e461bd086a25db6bf138f3d86da4b8283a72 (
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
|
-- File: Plate_GlobalTranslationConstraint.cdl
-- Created: Thu Mar 26 13:13:17 1998
-- Author: # Andre LIEUTIER
-- <alr@sgi63>
---Copyright: Matra Datavision 1998
class GlobalTranslationConstraint from Plate
---Purpose: force a set of UV points to translate without deformation
--
--
uses
XY from gp,
SequenceOfXY from TColgp,
LinearXYZConstraint from Plate
is
Create(SOfXY : SequenceOfXY) returns GlobalTranslationConstraint;
-- SofXY is a set of UV parametres for which The Plate function
-- will give the same value
--
-- The Sequence length have to be at least 2.
--
-- Accessors :
LXYZC(me) returns LinearXYZConstraint;
---C++: inline
---C++: return const &
fields
myLXYZC : LinearXYZConstraint;
end;
|