1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: SketcherPrs_Transformation.h
4 // Created: 16 February 2015
5 // Author: Vitaly SMETANNIKOV
7 #ifndef SketcherPrs_Transformation_H
8 #define SketcherPrs_Transformation_H
10 #include "SketcherPrs_SymbolPrs.h"
11 #include <ModelAPI_Feature.h>
14 DEFINE_STANDARD_HANDLE(SketcherPrs_Transformation, SketcherPrs_SymbolPrs)
18 * A redefinition of standard AIS Interactive Object in order to provide
19 * presentation of parallel constraint
21 class SketcherPrs_Transformation: public SketcherPrs_SymbolPrs
25 /// \param theConstraint a constraint feature
26 /// \param thePlane a coordinate plane of current sketch
27 /// \param isTranslation a flag is it translation or rotation
28 Standard_EXPORT SketcherPrs_Transformation(ModelAPI_Feature* theConstraint,
29 const std::shared_ptr<GeomAPI_Ax3>& thePlane,
32 DEFINE_STANDARD_RTTI(SketcherPrs_Transformation)
34 virtual const char* iconName() const { return myIsTranslation? "translate.png" : "rotate.png"; }
36 /// Redefine this function in order to add additiona lines of constraint base
37 /// \param thePrs a presentation
38 /// \param theColor a color of additiona lines
39 virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
41 /// Update myPntArray according to presentation positions
42 /// \return true in case of success
43 virtual bool updatePoints(double theStep) const;