X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Factory.cpp;h=24914e915e31e80f8d157a7cffdec4f913af5f72;hb=a5746a7f8fd8bcd555fb16f98e312c86ca1210da;hp=b46070694c1d2fd4db6e1df60880768f2e089b23;hpb=4ec2f8898777f6c71fcf6818b4e0fc340d057bde;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Factory.cpp b/src/SketcherPrs/SketcherPrs_Factory.cpp index b46070694..24914e915 100644 --- a/src/SketcherPrs/SketcherPrs_Factory.cpp +++ b/src/SketcherPrs/SketcherPrs_Factory.cpp @@ -13,9 +13,15 @@ #include "SketcherPrs_HVDirection.h" #include "SketcherPrs_Equal.h" #include "SketcherPrs_Tangent.h" +#include "SketcherPrs_Radius.h" +#include "SketcherPrs_LengthDimension.h" +#include "SketcherPrs_Mirror.h" +#include "SketcherPrs_Transformation.h" +#include "SketcherPrs_Angle.h" +// Macros for constraint presentation definition #define CONSTRAINT_PRS_IMPL(NAME, CLASS) \ -AISObjectPtr SketcherPrs_Factory::NAME(SketchPlugin_Constraint* theConstraint, \ +AISObjectPtr SketcherPrs_Factory::NAME(ModelAPI_Feature* theConstraint, \ const std::shared_ptr& thePlane) \ { \ std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); \ @@ -30,9 +36,13 @@ CONSTRAINT_PRS_IMPL(perpendicularConstraint, SketcherPrs_Perpendicular); CONSTRAINT_PRS_IMPL(rigidConstraint, SketcherPrs_Rigid); CONSTRAINT_PRS_IMPL(equalConstraint, SketcherPrs_Equal); CONSTRAINT_PRS_IMPL(tangentConstraint, SketcherPrs_Tangent); +CONSTRAINT_PRS_IMPL(radiusConstraint, SketcherPrs_Radius); +CONSTRAINT_PRS_IMPL(lengthDimensionConstraint, SketcherPrs_LengthDimension); +CONSTRAINT_PRS_IMPL(mirrorConstraint, SketcherPrs_Mirror); +CONSTRAINT_PRS_IMPL(angleConstraint, SketcherPrs_Angle); - -AISObjectPtr SketcherPrs_Factory::horisontalConstraint(SketchPlugin_Constraint* theConstraint, +// Non-standard constraints definition +AISObjectPtr SketcherPrs_Factory::horisontalConstraint(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane) { std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); @@ -41,7 +51,7 @@ AISObjectPtr SketcherPrs_Factory::horisontalConstraint(SketchPlugin_Constraint* return aAISObj; } -AISObjectPtr SketcherPrs_Factory::verticalConstraint(SketchPlugin_Constraint* theConstraint, +AISObjectPtr SketcherPrs_Factory::verticalConstraint(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane) { std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); @@ -49,3 +59,21 @@ AISObjectPtr SketcherPrs_Factory::verticalConstraint(SketchPlugin_Constraint* th aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); return aAISObj; } + +AISObjectPtr SketcherPrs_Factory::translateConstraint(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane) +{ + std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_Transformation) aPrs = new SketcherPrs_Transformation(theConstraint, thePlane, true); + aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + return aAISObj; +} + +AISObjectPtr SketcherPrs_Factory::rotateConstraint(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane) +{ + std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_Transformation) aPrs = new SketcherPrs_Transformation(theConstraint, thePlane, false); + aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + return aAISObj; +}