blob: 40094b7ed7a91ab82ec4f38738bb40eb9005fd3a (
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
39
40
41
42
43
44
45
46
47
48
49
|
-- File: GeomFill_Filling.cdl
-- Created: Tue Sep 28 12:37:19 1993
-- Author: Bruno DUMORTIER
-- <dub@sdsun1>
---Copyright: Matra Datavision 1993
class Filling from GeomFill
uses
Array1OfPnt from TColgp,
Array2OfPnt from TColgp,
HArray2OfPnt from TColgp,
Array1OfReal from TColStd,
Array2OfReal from TColStd,
HArray2OfReal from TColStd
raises
NoSuchObject from Standard
is
Create;
NbUPoles(me) returns Integer from Standard
is static;
NbVPoles(me) returns Integer from Standard
is static;
Poles(me; Poles : in out Array2OfPnt from TColgp)
is static;
isRational(me) returns Boolean from Standard
is static;
Weights(me; Weights : in out Array2OfReal from TColStd)
raises
NoSuchObject from Standard
is static;
fields
IsRational : Boolean from Standard is protected;
myPoles : HArray2OfPnt from TColgp is protected;
myWeights : HArray2OfReal from TColStd is protected;
end Filling;
|