1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: SketcherPrs_Angle.h
4 // Created: 20 August 2015
5 // Author: Vitaly SMETANNIKOV
8 #ifndef SketcherPrs_Angle_H
9 #define SketcherPrs_Angle_H
11 #include <GeomAPI_Ax3.h>
12 #include <ModelAPI_Feature.h>
14 #include <AIS_AngleDimension.hxx>
15 #include <Standard_DefineHandle.hxx>
17 DEFINE_STANDARD_HANDLE(SketcherPrs_Angle, AIS_AngleDimension)
21 * A class for representation of angle constraint
23 class SketcherPrs_Angle : public AIS_AngleDimension
27 /// \param theConstraint a constraint feature
28 /// \param thePlane a coordinate plane of current sketch
29 Standard_EXPORT SketcherPrs_Angle(ModelAPI_Feature* theConstraint,
30 const std::shared_ptr<GeomAPI_Ax3>& thePlane);
32 DEFINE_STANDARD_RTTI(SketcherPrs_Angle)
34 /// Redefinition of virtual function
35 Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
36 const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
38 /// Redefinition of virtual function
39 Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
40 const Standard_Integer aMode);
43 /// Constraint feature
44 ModelAPI_Feature* myConstraint;
46 /// Plane of the current sketcher
47 std::shared_ptr<GeomAPI_Ax3> myPlane;
49 Handle(Prs3d_DimensionAspect) myAspect;