1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: SketcherPrs_LengthDimension.h
4 // Created: 27 March 2015
5 // Author: Vitaly SMETANNIKOV
8 #ifndef SketcherPrs_LinearDimension_H
9 #define SketcherPrs_LinearDimension_H
11 #include <GeomAPI_Ax3.h>
12 #include <ModelAPI_Feature.h>
13 #include <AIS_LengthDimension.hxx>
14 #include <Standard_DefineHandle.hxx>
17 DEFINE_STANDARD_HANDLE(SketcherPrs_LengthDimension, AIS_LengthDimension)
21 * A class for representation of linear dimension constraint.
22 * It supports SketchPlugin_ConstraintLength and SketchPlugin_ConstraintDistance features.
24 class SketcherPrs_LengthDimension : public AIS_LengthDimension
28 /// \param theConstraint a constraint feature
29 /// \param thePlane a coordinate plane of current sketch
30 Standard_EXPORT SketcherPrs_LengthDimension(ModelAPI_Feature* theConstraint,
31 const std::shared_ptr<GeomAPI_Ax3>& thePlane);
33 DEFINE_STANDARD_RTTI(SketcherPrs_LengthDimension)
35 /// Redefinition of virtual function
36 Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
37 const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
39 /// Redefinition of virtual function
40 Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
41 const Standard_Integer aMode);
44 bool getPoints(gp_Pnt& thePnt1, gp_Pnt& thePnt2);
46 /// Constraint feature
47 ModelAPI_Feature* myConstraint;
49 /// Plane of the current sketcher
50 std::shared_ptr<GeomAPI_Ax3> myPlane;
52 Handle(Prs3d_DimensionAspect) myAspect;