X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Coincident.h;h=52ea362c58bb1b37c6b7944e3456c26054e38bc0;hb=752c9e02e6aa8ced24e9b53097cb42540d5e6a08;hp=10d0c72c1553b47bba1b0acf80d241bf23953428;hpb=e9d4bd92e29ba18fc93a074b3bd3fd0972ec8992;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Coincident.h b/src/SketcherPrs/SketcherPrs_Coincident.h index 10d0c72c1..52ea362c5 100644 --- a/src/SketcherPrs/SketcherPrs_Coincident.h +++ b/src/SketcherPrs/SketcherPrs_Coincident.h @@ -25,12 +25,17 @@ class SketcherPrs_Coincident: public AIS_InteractiveObject { public: /// Constructor - /// \param theResult a result object + /// \param theConstraint a constraint object + /// \param thePlane plane of a sketch Standard_EXPORT SketcherPrs_Coincident(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane); + /// Defines color for the presentation + /// \param aColor a color object Standard_EXPORT virtual void SetColor(const Quantity_Color& aColor); + /// Defines color for the presentation + /// \param aColor a color name Standard_EXPORT virtual void SetColor(const Quantity_NameOfColor aColor); DEFINE_STANDARD_RTTI(SketcherPrs_Coincident) @@ -46,6 +51,7 @@ protected: private: ModelAPI_Feature* myConstraint; std::shared_ptr myPlane; + gp_Pnt myPoint; };