X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Transformation.cpp;h=82e375f0f989fc0b401f1006eff3d8eb9373f12d;hb=7a56425e50582b34ad233c2865e7da87a2e23406;hp=a409bcc94c770dfae15d8f4c1a4e211cf2db7a33;hpb=7074394f8f08413d885f63be01df6bd5007b868c;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Transformation.cpp b/src/SketcherPrs/SketcherPrs_Transformation.cpp index a409bcc94..82e375f0f 100644 --- a/src/SketcherPrs/SketcherPrs_Transformation.cpp +++ b/src/SketcherPrs/SketcherPrs_Transformation.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include "SketcherPrs_Transformation.h" @@ -42,16 +41,18 @@ IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Transformation, SketcherPrs_SymbolPrs); static Handle(Image_AlienPixMap) MyPixMap; SketcherPrs_Transformation::SketcherPrs_Transformation(ModelAPI_Feature* theConstraint, - const std::shared_ptr& thePlane, + SketchPlugin_Sketch* theSketcher, bool isTranslation) - : SketcherPrs_SymbolPrs(theConstraint, thePlane), myIsTranslation(isTranslation) + : SketcherPrs_SymbolPrs(theConstraint, theSketcher), myIsTranslation(isTranslation) { } bool SketcherPrs_Transformation::IsReadyToDisplay(ModelAPI_Feature* theConstraint, - const std::shared_ptr&/* thePlane*/) + const std::shared_ptr& thePlane) { bool aReadyToDisplay = false; + if (!thePlane) + return aReadyToDisplay; std::shared_ptr aData = theConstraint->data(); // Get transformated objects list @@ -87,7 +88,7 @@ bool SketcherPrs_Transformation::IsReadyToDisplay(ModelAPI_Feature* theConstrain bool SketcherPrs_Transformation::updateIfReadyToDisplay(double theStep, bool withColor) const { - if (!IsReadyToDisplay(myConstraint, myPlane)) + if (!IsReadyToDisplay(myConstraint, plane())) return false; std::shared_ptr aData = myConstraint->data(); @@ -145,12 +146,12 @@ void SketcherPrs_Transformation::drawLines(const Handle(Prs3d_Presentation)& the if (aStart.get() && aEnd.get() && aStart->isInitialized() && aEnd->isInitialized()) { // Add start point - std::shared_ptr aPnt = myPlane->to3D(aStart->x(), aStart->y()); + std::shared_ptr aPnt = plane()->to3D(aStart->x(), aStart->y()); Handle(Geom_CartesianPoint) aPoint = new Geom_CartesianPoint(aPnt->impl()); StdPrs_Point::Add(thePrs, aPoint, myDrawer); // Add end point - aPnt = myPlane->to3D(aEnd->x(), aEnd->y()); + aPnt = plane()->to3D(aEnd->x(), aEnd->y()); aPoint = new Geom_CartesianPoint(aPnt->impl()); StdPrs_Point::Add(thePrs, aPoint, myDrawer); } @@ -160,7 +161,7 @@ void SketcherPrs_Transformation::drawLines(const Handle(Prs3d_Presentation)& the GeomDataAPI_Point2D::getPoint2D(aData, SketchPlugin_MultiRotation::CENTER_ID()); if (aCenter.get() && aCenter->isInitialized()) { // Show center of rotation - std::shared_ptr aPnt = myPlane->to3D(aCenter->x(), aCenter->y()); + std::shared_ptr aPnt = plane()->to3D(aCenter->x(), aCenter->y()); Handle(Geom_CartesianPoint) aPoint = new Geom_CartesianPoint(aPnt->impl()); StdPrs_Point::Add(thePrs, aPoint, myDrawer); }