blob: bc13fb7ec950123009970f494ff5dc2c2143f757 (
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
|
-- File: PBRep_PointOnSurface.cdl
-- Created: Wed Aug 11 11:49:29 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
class PointOnSurface from PBRep inherits PointsOnSurface from PBRep
uses
Surface from PGeom,
Location from PTopLoc
is
Create(P1,P2 : Real;
S : Surface from PGeom;
L : Location from PTopLoc)
returns mutable PointOnSurface from PBRep;
---Level: Internal
Parameter2(me) returns Real
is static;
---Level: Internal
IsPointOnSurface(me) returns Boolean from Standard
---Purpose: Returns True
is redefined;
fields
myParameter2 : Real;
end PointOnSurface;
|