Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/smesh.git] / src / SMDS / SMDS_EdgePosition.cxx
1 using namespace std;
2 // File:        SMDS_EdgePosition.cxx
3 // Created:     Mon May 13 14:49:28 2002
4 // Author:      Jean-Michel BOULCOURT
5 //              <jmb@localhost.localdomain>
6
7
8 #include "SMDS_EdgePosition.ixx"
9 #include "utilities.h"
10
11 //=======================================================================
12 //function : SMDS_EdgePosition
13 //purpose  : 
14 //=======================================================================
15
16 SMDS_EdgePosition::SMDS_EdgePosition()
17   :SMDS_Position(0,SMDS_TOP_EDGE),myUParameter(0.)
18 {
19 }
20
21 //=======================================================================
22 //function : SMDS_EdgePosition
23 //purpose  : 
24 //=======================================================================
25
26 SMDS_EdgePosition::SMDS_EdgePosition(const Standard_Integer aEdgeId,
27                                      const Standard_Real aUParam)
28   :SMDS_Position(aEdgeId,SMDS_TOP_EDGE),myUParameter(aUParam)
29 {
30 }
31
32 //=======================================================================
33 //function : Coords
34 //purpose  : 
35 //=======================================================================
36
37 gp_Pnt SMDS_EdgePosition::Coords() const
38 {
39   MESSAGE( "SMDS_EdgePosition::Coords not implemented" );
40   return gp_Pnt(0,0,0);
41 }