blob: 6673b619a24c830a05f2126233bb888c5e4d1f3f (
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: PBRep_CurveOn2Surfaces.cdl
-- Created: Tue Jul 6 10:22:53 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
class CurveOn2Surfaces from PBRep inherits CurveRepresentation from PBRep
---Purpose: Defines a continuity between two surfaces.
uses
Surface from PGeom,
Location from PTopLoc,
Shape from GeomAbs
raises
NullObject from Standard
is
Create(S1 , S2 : Surface from PGeom;
L1 , L2 : Location from PTopLoc;
C : Shape from GeomAbs)
returns mutable CurveOn2Surfaces from PBRep;
Surface(me) returns any Surface from PGeom
is static;
Surface2(me) returns any Surface from PGeom
is static;
Location2(me) returns Location from PTopLoc
is static;
Continuity(me) returns Shape from GeomAbs
is static;
IsRegularity(me) returns Boolean
---Purpose: Returns True.
is redefined;
fields
mySurface : Surface from PGeom;
mySurface2 : Surface from PGeom;
myLocation2 : Location from PTopLoc;
myContinuity : Shape from GeomAbs;
end CurveOn2Surfaces;
|