X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Factory.h;h=1d3f7335d66145c103603ffdf02b106e94f293f4;hb=7f873aed4bae5a98dca078209699b54276b46fce;hp=6e61853e93a30171cd83449902d387853e2d6697;hpb=0f0ed262e58309bcd9e5a1cb8415523821051d8d;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Factory.h b/src/SketcherPrs/SketcherPrs_Factory.h index 6e61853e9..1d3f7335d 100644 --- a/src/SketcherPrs/SketcherPrs_Factory.h +++ b/src/SketcherPrs/SketcherPrs_Factory.h @@ -14,6 +14,11 @@ class SketchPlugin_Constraint; +#define GET_CONSTRAINT_PRS(NAME) \ + static AISObjectPtr NAME(SketchPlugin_Constraint* theConstraint, \ + const std::shared_ptr& thePlane); \ + + /** * Class which creates constraints presentations */ @@ -23,26 +28,42 @@ public: /// Creates coincedent constraint presentation /// \param theConstraint the constraint /// \param thePlane the current sketch plane - static AISObjectPtr coincidentConstraint(SketchPlugin_Constraint* theConstraint, - const std::shared_ptr& thePlane); + GET_CONSTRAINT_PRS(coincidentConstraint) /// Creates coincedent parallel presentation /// \param theConstraint the constraint /// \param thePlane the current sketch plane - static AISObjectPtr parallelConstraint(SketchPlugin_Constraint* theConstraint, - const std::shared_ptr& thePlane); + GET_CONSTRAINT_PRS(parallelConstraint) + + /// Creates coincedent perpendicular presentation + /// \param theConstraint the constraint + /// \param thePlane the current sketch plane + GET_CONSTRAINT_PRS(perpendicularConstraint) + + /// Creates coincedent perpendicular presentation + /// \param theConstraint the constraint + /// \param thePlane the current sketch plane + GET_CONSTRAINT_PRS(rigidConstraint) + + /// Creates coincedent perpendicular presentation + /// \param theConstraint the constraint + /// \param thePlane the current sketch plane + GET_CONSTRAINT_PRS(horisontalConstraint) + + /// Creates coincedent perpendicular presentation + /// \param theConstraint the constraint + /// \param thePlane the current sketch plane + GET_CONSTRAINT_PRS(verticalConstraint) /// Creates coincedent perpendicular presentation /// \param theConstraint the constraint /// \param thePlane the current sketch plane - static AISObjectPtr perpendicularConstraint(SketchPlugin_Constraint* theConstraint, - const std::shared_ptr& thePlane); + GET_CONSTRAINT_PRS(equalConstraint) /// Creates coincedent perpendicular presentation /// \param theConstraint the constraint /// \param thePlane the current sketch plane - static AISObjectPtr rigidConstraint(SketchPlugin_Constraint* theConstraint, - const std::shared_ptr& thePlane); + GET_CONSTRAINT_PRS(tangentConstraint) }; #endif