blob: f39871708ef4e1b0ebffa7b52d032d4468ca414e (
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
|
-- File: PBRep_PointsOnSurface.cdl
-- Created: Wed Aug 11 11:39:57 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
deferred class PointsOnSurface from PBRep inherits PointRepresentation from PBRep
uses
Surface from PGeom,
Location from PTopLoc
is
Initialize (P : Real;
S : Surface from PGeom;
L : Location from PTopLoc);
---Level: Internal
Surface(me) returns Surface from PGeom
is static;
---Level: Internal
fields
mySurface : Surface from PGeom;
end PointsOnSurface;
|