X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Radius.cpp;h=c08d7ab9430db8523b308bc025595686ec6a360f;hb=e67f27dc909fe58f932c551e030319ae0930db6e;hp=bdefd51876adc095b72ea8d5ef77734844b38674;hpb=6aad051f35d9c375d4727ce5f4d1cbfe24fd3838;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Radius.cpp b/src/SketcherPrs/SketcherPrs_Radius.cpp index bdefd5187..c08d7ab94 100644 --- a/src/SketcherPrs/SketcherPrs_Radius.cpp +++ b/src/SketcherPrs/SketcherPrs_Radius.cpp @@ -5,6 +5,7 @@ // Author: Vitaly SMETANNIKOV #include "SketcherPrs_Radius.h" +#include "SketcherPrs_Tools.h" #include #include @@ -12,20 +13,17 @@ #include #include -#include +#include #include #include #include -const int CONSTRAINT_TEXT_HEIGHT = 20; /// the text height of the constraint -const int CONSTRAINT_TEXT_SELECTION_TOLERANCE = 20; /// the text selection tolerance - -static gp_Circ MyDefCirc(gp_Ax2(gp_Pnt(0,0,0), gp_Dir(0,0,1)), 1); +static const gp_Circ MyDefCirc(gp_Ax2(gp_Pnt(0,0,0), gp_Dir(0,0,1)), 1); IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Radius, AIS_RadiusDimension); IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Radius, AIS_RadiusDimension); -SketcherPrs_Radius::SketcherPrs_Radius(SketchPlugin_Constraint* theConstraint, +SketcherPrs_Radius::SketcherPrs_Radius(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane) : AIS_RadiusDimension(MyDefCirc), myConstraint(theConstraint), myPlane(thePlane) { @@ -34,9 +32,11 @@ SketcherPrs_Radius::SketcherPrs_Radius(SketchPlugin_Constraint* theConstraint, myAspect->MakeText3d(false); myAspect->MakeTextShaded(false); myAspect->MakeUnitsDisplayed(false); + myAspect->TextAspect()->SetHeight(SketcherPrs_Tools::getDefaultTextHeight()); + myAspect->ArrowAspect()->SetLength(SketcherPrs_Tools::getArrowSize()); SetDimensionAspect(myAspect); - SetSelToleranceForText2d(CONSTRAINT_TEXT_SELECTION_TOLERANCE); + SetSelToleranceForText2d(SketcherPrs_Tools::getDefaultTextHeight()); } @@ -83,21 +83,45 @@ void SketcherPrs_Radius::Compute(const Handle(PrsMgr_PresentationManager3d)& the std::shared_ptr aNormal = myPlane->norm(); GeomAPI_Circ aCircle(aCenter, aNormal, aRadius); - //gp_Circ aCircle(gp_Ax2(aCenter->impl(), aNormal->impl()), aRadius); - std::shared_ptr anAnchor = aCircle.project(aFlyoutPnt); - std::shared_ptr anAnchorXYZ = anAnchor->xyz(); - anAnchorXYZ = anAnchorXYZ->decreased(aCenter->xyz()); - std::shared_ptr aDeltaDir(new GeomAPI_Dir(anAnchorXYZ)); - const double aDelta = 1e-3; - anAnchor->setX(anAnchor->x() + aDelta * aDeltaDir->x()); - anAnchor->setY(anAnchor->y() + aDelta * aDeltaDir->y()); - anAnchor->setZ(anAnchor->z() + aDelta * aDeltaDir->z()); + std::shared_ptr anAnchor = SketcherPrs_Tools::getAnchorPoint(myConstraint, myPlane); + //std::shared_ptr anAnchor = aCircle.project(aFlyoutPnt); + //std::shared_ptr anAnchorXYZ = anAnchor->xyz(); + //anAnchorXYZ = anAnchorXYZ->decreased(aCenter->xyz()); + //std::shared_ptr aDeltaDir(new GeomAPI_Dir(anAnchorXYZ)); + //const double aDelta = 1e-3; + //anAnchor->setX(anAnchor->x() + aDelta * aDeltaDir->x()); + //anAnchor->setY(anAnchor->y() + aDelta * aDeltaDir->y()); + //anAnchor->setZ(anAnchor->z() + aDelta * aDeltaDir->z()); SetMeasuredGeometry(aCircle.impl(), anAnchor->impl()); SetCustomValue(aRadius); - myAspect->TextAspect()->SetHeight(CONSTRAINT_TEXT_HEIGHT); - myAspect->ArrowAspect()->SetLength(CONSTRAINT_TEXT_HEIGHT * 2.); AIS_RadiusDimension::Compute(thePresentationManager, thePresentation, theMode); } + +void SketcherPrs_Radius::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection, + const Standard_Integer theMode) +{ + Standard_Integer aMode; + switch (theMode) { + case 0: // we should use selection of all objects + aMode = 0; + break; + case SketcherPrs_Tools::Sel_Dimension_All: + aMode = 0; + break; + case SketcherPrs_Tools::Sel_Dimension_Line: + aMode = 1; + break; + case SketcherPrs_Tools::Sel_Dimension_Text: + aMode = 2; + break; + default: { + // there are own selection modes, so the others should be ignored + // otherwise, the text selection appears in the viewer + return; + } + } + AIS_RadiusDimension::ComputeSelection(aSelection, aMode); +}