blob: 9bdc77548252d0c0aa71a7c042a73822a0364d53 (
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
|
-- File: PBRep_PointOnCurve.cdl
-- Created: Wed Aug 11 11:37:31 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
class PointOnCurve from PBRep inherits PointRepresentation from PBRep
uses
Curve from PGeom,
Location from PTopLoc
is
Create(P : Real;
C : Curve from PGeom;
L : Location from PTopLoc)
returns mutable PointOnCurve from PBRep;
---Level: Internal
Curve(me) returns any Curve from PGeom
is static;
---Level: Internal
IsPointOnCurve(me) returns Boolean from Standard
---Purpose: Returns True;
is redefined;
fields
myCurve : Curve from PGeom;
end PointOnCurve;
|