mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
57 lines
1.1 KiB
Plaintext
Executable File
57 lines
1.1 KiB
Plaintext
Executable File
-- File: TVertex.cdl
|
|
-- Created: Wed May 27 15:20:30 1992
|
|
-- Author: Remi LEQUETTE
|
|
-- <rle@sdsun2>
|
|
---Copyright: Matra Datavision 1992
|
|
|
|
|
|
|
|
|
|
class TVertex from PBRep inherits TVertex from PTopoDS
|
|
|
|
---Purpose: The TVertex from PBRep inherits from the TVertex
|
|
-- from TopoDS.
|
|
--
|
|
-- The TVertex contains a Pnt from gp and a tolerance.
|
|
--
|
|
uses
|
|
Pnt from gp,
|
|
PointRepresentation from PBRep
|
|
|
|
is
|
|
Create returns mutable TVertex from PBRep;
|
|
---Level: Internal
|
|
|
|
|
|
Tolerance(me) returns Real
|
|
is static;
|
|
---Level: Internal
|
|
|
|
Tolerance(me : mutable; T : Real)
|
|
is static;
|
|
---Level: Internal
|
|
|
|
Pnt(me) returns Pnt from gp
|
|
is static;
|
|
---Level: Internal
|
|
|
|
Pnt(me : mutable; P : Pnt from gp)
|
|
is static;
|
|
---Level: Internal
|
|
|
|
Points(me) returns PointRepresentation from PBRep
|
|
is static;
|
|
---Level: Internal
|
|
|
|
Points(me : mutable; P : PointRepresentation from PBRep)
|
|
is static;
|
|
---Level: Internal
|
|
|
|
fields
|
|
|
|
myTolerance : Real;
|
|
myPnt : Pnt from gp;
|
|
myPoints : PointRepresentation from PBRep;
|
|
|
|
end TVertex;
|