Salome HOME
NRI : First integration.
[modules/smesh.git] / src / SMDS / SMDS_VertexPosition.cxx
1 using namespace std;
2 // File:        SMDS_VertexPosition.cxx
3 // Created:     Mon May 13 14:41:57 2002
4 // Author:      Jean-Michel BOULCOURT
5 //              <jmb@localhost.localdomain>
6
7
8 #include "SMDS_VertexPosition.ixx"
9 #include "utilities.h"
10
11 //=======================================================================
12 //function : SMDS_VertexPosition
13 //purpose  : 
14 //=======================================================================
15
16 SMDS_VertexPosition::SMDS_VertexPosition()
17   :SMDS_Position(0,SMDS_TOP_VERTEX)
18 {
19 }
20
21 //=======================================================================
22 //function : SMDS_VertexPosition
23 //purpose  : 
24 //=======================================================================
25
26 SMDS_VertexPosition::SMDS_VertexPosition(const Standard_Integer aVertexId)
27   :SMDS_Position(aVertexId,SMDS_TOP_VERTEX)
28 {
29 }
30
31
32 //=======================================================================
33 //function : Coords
34 //purpose  : 
35 //=======================================================================
36
37 gp_Pnt SMDS_VertexPosition::Coords() const
38 {
39   MESSAGE( "SMDS_VertexPosition::Coords not implemented" );
40   return gp_Pnt(0,0,0);
41 }