X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Angle.h;h=a2f9a640376915748feb68fac61c46e56b4275eb;hb=b5893b0a30fac08134c24de4565cb513a43affa6;hp=5e425d09ea274b0c1e4dd2d58631b09c3bb1ea75;hpb=a2712247ec6b1ff00fb85ce07d0fe5094be58e36;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Angle.h b/src/SketcherPrs/SketcherPrs_Angle.h index 5e425d09e..a2f9a6403 100644 --- a/src/SketcherPrs/SketcherPrs_Angle.h +++ b/src/SketcherPrs/SketcherPrs_Angle.h @@ -14,7 +14,7 @@ #include #include -class SketcherPrs_DimensionStyleListener; +#include DEFINE_STANDARD_HANDLE(SketcherPrs_Angle, AIS_AngleDimension) @@ -28,15 +28,16 @@ public: /// Constructor /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch - Standard_EXPORT SketcherPrs_Angle(ModelAPI_Feature* theConstraint, + Standard_EXPORT SketcherPrs_Angle(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane); /// Destructor Standard_EXPORT ~SketcherPrs_Angle(); - DEFINE_STANDARD_RTTI(SketcherPrs_Angle) + DEFINE_STANDARD_RTTIEXT(SketcherPrs_Angle, AIS_AngleDimension) - /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation + /// Returns true if the constraint feature arguments are correcly filled + /// to build AIS presentation /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch /// \return boolean result value @@ -44,7 +45,8 @@ public: const std::shared_ptr& thePlane); protected: /// Redefinition of virtual function - Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, + Standard_EXPORT virtual void Compute( + const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0); /// Redefinition of virtual function @@ -62,20 +64,30 @@ protected: /// \return real value double calculateDistanceToFlyoutPoint(); - bool getPoints(gp_Pnt& theFirstPoint, gp_Pnt& theSecondPoint, gp_Pnt& theCenterPoint, - double& theAngle) const; + static bool readyToDisplay(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane, + gp_Pnt& theFirstPoint, gp_Pnt& theSecondPoint, + gp_Pnt& theCenterPoint); private: /// Constraint feature ModelAPI_Feature* myConstraint; /// Plane of the current sketcher - std::shared_ptr myPlane; + std::shared_ptr mySketcherPlane; Handle(Prs3d_DimensionAspect) myAspect; /// Listener to update dimension visualization style SketcherPrs_DimensionStyleListener* myStyleListener; + + /// container of values obtained from the constraint, which are necessary to fill the presentation + gp_Pnt myFirstPoint; ///< the dimension first point for measured geometry + gp_Pnt mySecondPoint; ///< the dimension second point for measured geometry + gp_Pnt myCenterPoint; ///< the dimension center point for measured geometry + gp_Pnt myFlyOutPoint; ///< the dimension fly out point for measured geometry + + SketcherPrs_DimensionStyleListener::DimensionValue myValue; /// the structure filled by constraint };