mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 02:40:22 +08:00
30 lines
586 B
Plaintext
Executable File
30 lines
586 B
Plaintext
Executable File
-- File: BRepLib_MakeVertex.cdl
|
|
-- Created: Tue Jul 6 17:57:32 1993
|
|
-- Author: Remi LEQUETTE
|
|
-- <rle@phylox>
|
|
---Copyright: Matra Datavision 1993
|
|
|
|
|
|
|
|
|
|
class MakeVertex from BRepLib inherits MakeShape from BRepLib
|
|
|
|
---Purpose: Provides methods to build vertices.
|
|
|
|
uses
|
|
Pnt from gp,
|
|
Vertex from TopoDS
|
|
|
|
is
|
|
Create (P : Pnt from gp)
|
|
---Level: Public
|
|
returns MakeVertex from BRepLib;
|
|
|
|
Vertex(me) returns Vertex from TopoDS
|
|
---C++: return const &
|
|
---C++: alias "Standard_EXPORT operator TopoDS_Vertex() const;"
|
|
---Level: Public
|
|
is static;
|
|
|
|
end MakeVertex;
|