0022627: Change OCCT memory management defaults
[occt.git] / src / BRep / BRep_PointOnSurface.cdl
CommitLineData
7fd59977 1-- File: BRep_PointOnSurface.cdl
2-- Created: Tue Aug 10 14:29:18 1993
3-- Author: Remi LEQUETTE
4-- <rle@phylox>
5---Copyright: Matra Datavision 1993
6
7
8
9class PointOnSurface from BRep inherits PointsOnSurface from BRep
10
11uses
12 Surface from Geom,
13 Location from TopLoc
14
15is
16 Create(P1,P2 : Real;
17 S : Surface from Geom;
18 L : Location from TopLoc)
19 returns mutable PointOnSurface from BRep;
20
21
22 IsPointOnSurface(me) returns Boolean
23 is redefined;
24
25 IsPointOnSurface(me; S : Surface from Geom;
26 L : Location from TopLoc) returns Boolean
27 is redefined;
28
29 Parameter2(me) returns Real
30 is redefined;
31
32 Parameter2(me : mutable; P : Real)
33 is redefined;
34
35
36fields
37
38 myParameter2 : Real;
39
40end PointOnSurface;