]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomData/GeomData_Point.cpp
Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / GeomData / GeomData_Point.cpp
index db942aff62389b2ff9f268787954b1ff15a3ed51..023b12d9628c4ae466b4ce77ac8c266b77aed051 100644 (file)
@@ -11,8 +11,8 @@ using namespace std;
 
 void GeomData_Point::setValue(const double theX, const double theY, const double theZ)
 {
-  if (!myIsInitialized || myCoords->Value(0) != theX || myCoords->Value(1) != theY || 
-       myCoords->Value(2) != theZ) {
+  if (!myIsInitialized || myCoords->Value(0) != theX || myCoords->Value(1) != theY
+      || myCoords->Value(2) != theZ) {
     myCoords->SetValue(0, theX);
     myCoords->SetValue(1, theY);
     myCoords->SetValue(2, theZ);
@@ -43,8 +43,8 @@ double GeomData_Point::z() const
 
 boost::shared_ptr<GeomAPI_Pnt> GeomData_Point::pnt()
 {
-  boost::shared_ptr<GeomAPI_Pnt> aResult(new GeomAPI_Pnt(
-    myCoords->Value(0), myCoords->Value(1), myCoords->Value(2)));
+  boost::shared_ptr<GeomAPI_Pnt> aResult(
+      new GeomAPI_Pnt(myCoords->Value(0), myCoords->Value(1), myCoords->Value(2)));
   return aResult;
 }