Salome HOME
NRI : Change lGeometryClient by lGEOMClient.
[modules/smesh.git] / src / SMDS / SMDS_SpacePosition.lxx
1 // File:        SMDS_SpacePosition.lxx
2 // Created:     Mon May 13 14:24:22 2002
3 // Author:      Jean-Michel BOULCOURT
4 //              <jmb@localhost.localdomain>
5
6 //=======================================================================
7 //function : SetCoords
8 //purpose  : 
9 //=======================================================================
10
11 inline void SMDS_SpacePosition::SetCoords(const Standard_Real x,
12                                           const Standard_Real y,
13                                           const Standard_Real z)
14 {
15   myCoords.SetCoord(x,y,z);
16 }
17
18 //=======================================================================
19 //function : SetCoords
20 //purpose  : 
21 //=======================================================================
22
23 inline void SMDS_SpacePosition::SetCoords(const gp_Pnt& aCoords)
24 {
25   myCoords = aCoords;
26 }