blob: 00856379ebad67c4c196b177a7eec2826a30d732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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;
}
|