1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

44
src/PBRep/PBRep_GCurve.cdl Executable file
View File

@@ -0,0 +1,44 @@
-- File: PBRep_GCurve.cdl
-- Created: Mon Oct 23 15:51:17 1995
-- Author: Mister rmi
-- <rmi@pronox>
---Copyright: Matra Datavision 1995
deferred class GCurve from PBRep inherits CurveRepresentation from PBRep
---Purpose: Root class for the geometric curves
-- representation. Contains a range.
uses
Location from PTopLoc,
Pnt from gp
is
Initialize(L : Location from PTopLoc;
First , Last : Real from Standard);
First(me) returns Real
is static;
Last(me) returns Real
is static;
First(me : mutable; F : Real)
is static;
Last(me : mutable; L : Real)
is static;
IsGCurve(me) returns Boolean from Standard
---Purpose: returns TRUE
is redefined;
fields
myFirst : Real;
myLast : Real;
end GCurve;