blob: ef2291056abcc1900e05ca6155fb69e115958b75 (
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
|
-- File: BRep_PointOnCurveOnSurface.cdl
-- Created: Tue Aug 10 14:18:49 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
class PointOnCurveOnSurface from BRep inherits PointsOnSurface from BRep
uses
Curve from Geom2d,
Surface from Geom,
Location from TopLoc
is
Create(P : Real;
C : Curve from Geom2d;
S : Surface from Geom;
L : Location from TopLoc)
returns mutable PointOnCurveOnSurface from BRep;
IsPointOnCurveOnSurface(me) returns Boolean
---Purpose: Returns True
is redefined;
IsPointOnCurveOnSurface(me; PC : Curve from Geom2d;
S : Surface from Geom;
L : Location from TopLoc)
returns Boolean
is redefined;
PCurve(me) returns any Curve from Geom2d
---C++: return const &
is redefined;
PCurve(me : mutable; C : Curve from Geom2d)
is redefined;
fields
myPCurve : Curve from Geom2d;
end PointOnCurveOnSurface;
|