X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomData%2FGeomData_Point.cpp;h=61c92e12bbed4730cae31908d8eb7e781168efd0;hb=d22fc665c79c31c9eea0625e04c2e941adfdf7be;hp=db942aff62389b2ff9f268787954b1ff15a3ed51;hpb=4e60e46af3ebb4d1d8e1709e7806ed134edd4be7;p=modules%2Fshaper.git diff --git a/src/GeomData/GeomData_Point.cpp b/src/GeomData/GeomData_Point.cpp index db942aff6..61c92e12b 100644 --- a/src/GeomData/GeomData_Point.cpp +++ b/src/GeomData/GeomData_Point.cpp @@ -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); @@ -23,7 +23,6 @@ void GeomData_Point::setValue(const double theX, const double theY, const double void GeomData_Point::setValue(const boost::shared_ptr& thePoint) { setValue(thePoint->x(), thePoint->y(), thePoint->z()); - owner()->data()->sendAttributeUpdated(this); } double GeomData_Point::x() const @@ -43,8 +42,8 @@ double GeomData_Point::z() const boost::shared_ptr GeomData_Point::pnt() { - boost::shared_ptr aResult(new GeomAPI_Pnt( - myCoords->Value(0), myCoords->Value(1), myCoords->Value(2))); + boost::shared_ptr aResult( + new GeomAPI_Pnt(myCoords->Value(0), myCoords->Value(1), myCoords->Value(2))); return aResult; }