mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-18 17:06:14 +08:00
20 lines
390 B
Plaintext
Executable File
20 lines
390 B
Plaintext
Executable File
// File: BRepMesh_Vertex.lxx
|
|
// Created: Thu Sep 23 12:49:00 1993
|
|
// Author: Didier PIFFAULT
|
|
// <dpf@zerox>
|
|
|
|
inline const gp_XY& BRepMesh_Vertex::Coord()const
|
|
{
|
|
return myUV;
|
|
}
|
|
|
|
inline Standard_Integer BRepMesh_Vertex::Location3d()const
|
|
{
|
|
return myLocation;
|
|
}
|
|
|
|
inline BRepMesh_DegreeOfFreedom BRepMesh_Vertex::Movability()const
|
|
{
|
|
return myMovability;
|
|
}
|