X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Factory.cpp;h=b855929ab16f7513ffb86b1fe71fd7761c31a492;hb=d3883990177d27a12b8a2278cdbb82250ff19b79;hp=95c79fc44832e24e492fecde5c706131bc7be9b2;hpb=747b8fc4fc7746b3abe2f0b4aa5a583ae38aedcb;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Factory.cpp b/src/SketcherPrs/SketcherPrs_Factory.cpp index 95c79fc44..b855929ab 100644 --- a/src/SketcherPrs/SketcherPrs_Factory.cpp +++ b/src/SketcherPrs/SketcherPrs_Factory.cpp @@ -6,14 +6,20 @@ #include "SketcherPrs_Factory.h" -#include -#include -#include -#include -#include +#include "SketcherPrs_Coincident.h" +#include "SketcherPrs_Parallel.h" +#include "SketcherPrs_Perpendicular.h" +#include "SketcherPrs_Rigid.h" +#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" #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()); \ @@ -25,10 +31,15 @@ AISObjectPtr SketcherPrs_Factory::NAME(SketchPlugin_Constraint* theConstraint, \ CONSTRAINT_PRS_IMPL(coincidentConstraint, SketcherPrs_Coincident); CONSTRAINT_PRS_IMPL(parallelConstraint, SketcherPrs_Parallel); CONSTRAINT_PRS_IMPL(perpendicularConstraint, SketcherPrs_Perpendicular); -CONSTRAINT_PRS_IMPL(rigidConstraint, SketcherPrs_Rigid) +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); -AISObjectPtr SketcherPrs_Factory::horisontalConstraint(SketchPlugin_Constraint* theConstraint, +AISObjectPtr SketcherPrs_Factory::horisontalConstraint(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane) { std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); @@ -37,7 +48,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()); @@ -45,3 +56,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; +}