blob: 3869a6a92385906c06af4b28b7831c6a611c1769 (
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
37
38
|
-- File: GeomPlate_PlateG1Criterion.cdl
-- Created: Wed Mar 5 11:46:39 1997
-- Author: Joelle CHAUVET
-- <jct@sgi38>
---Copyright: Matra Datavision 1997
class PlateG1Criterion from GeomPlate inherits Criterion from AdvApp2Var
uses
SequenceOfXY,SequenceOfXYZ from TColgp,
Patch,Context from AdvApp2Var,
CriterionType,CriterionRepartition from AdvApp2Var
is
Create( Data : SequenceOfXY;
G1Data : SequenceOfXYZ;
Maximum : Real;
Type : CriterionType = AdvApp2Var_Absolute;
Repart : CriterionRepartition = AdvApp2Var_Regular)
returns PlateG1Criterion;
Value(me; P : in out Patch; C : Context )
is redefined;
IsSatisfied(me; P : Patch ) returns Boolean
is redefined;
fields
myData : SequenceOfXY;
myXYZ : SequenceOfXYZ;
end PlateG1Criterion;
|