blob: 457d9bc6b5b854f2a11845252d71234002d05dff (
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
|
-- File: PBRep_Curve3D.cdl
-- Created: Tue Jul 6 10:09:31 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
class Curve3D from PBRep inherits GCurve from PBRep
---Purpose: Representation of a curve by a 3D curve.
uses
Location from PTopLoc,
Curve from PGeom
is
Create(C : Curve from PGeom;
CF : Real from Standard;
CL : Real from Standard;
L : Location from PTopLoc)
returns mutable Curve3D from PBRep;
---Purpose : CF is curve first param
-- CL is curve last param
-- As far as they can't be computed from a Persistent Curve
-- they are given in the Curve3D constructor
Curve3D(me) returns Curve from PGeom
is static;
IsCurve3D(me) returns Boolean
---Purpose: Returns True.
is redefined;
fields
myCurve3D : Curve from PGeom;
end Curve3D;
|