mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-03 10:36:44 +08:00
21 lines
399 B
Plaintext
Executable File
21 lines
399 B
Plaintext
Executable File
// File: BRepMesh_Edge.lxx
|
|
// Created: Thu Sep 23 13:44:34 1993
|
|
// Author: Didier PIFFAULT
|
|
// <dpf@zerox>
|
|
|
|
inline Standard_Integer BRepMesh_Edge::FirstNode()const
|
|
{
|
|
return myFirstNode;
|
|
}
|
|
|
|
inline Standard_Integer BRepMesh_Edge::LastNode()const
|
|
{
|
|
return myLastNode;
|
|
}
|
|
|
|
inline BRepMesh_DegreeOfFreedom BRepMesh_Edge::Movability()const
|
|
{
|
|
return myMovability;
|
|
}
|
|
|