SHAPER 9.16.0
SketcherPrs_Angle.h
1// Copyright (C) 2014-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef SketcherPrs_Angle_H
21#define SketcherPrs_Angle_H
22
23#include <GeomAPI_Ax3.h>
24#include <ModelAPI_Feature.h>
25#include <SketchPlugin_Sketch.h>
26
27#include <PrsDim_AngleDimension.hxx>
28#include <Standard_DefineHandle.hxx>
29
30#include <SketcherPrs_DimensionStyle.h>
31
32DEFINE_STANDARD_HANDLE(SketcherPrs_Angle, PrsDim_AngleDimension)
33
34
39{
40public:
44 Standard_EXPORT SketcherPrs_Angle(ModelAPI_Feature* theConstraint,
45 SketchPlugin_Sketch* theSketcher);
46
48 Standard_EXPORT ~SketcherPrs_Angle();
49
51
52
57 static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
58 const std::shared_ptr<GeomAPI_Ax3>& thePlane);
59
61 Standard_EXPORT std::shared_ptr<GeomAPI_Ax3> plane() const
62 {
63 return mySketcher->coordinatePlane();
64 }
65
66protected:
68 Standard_EXPORT virtual void Compute(
69 const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
70 const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
71
73 Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
74 const Standard_Integer aMode);
75
79 bool isAnglePlaneReversedToSketchPlane();
80
85 double calculateDistanceToFlyoutPoint();
86
87 static bool readyToDisplay(ModelAPI_Feature* theConstraint,
88 const std::shared_ptr<GeomAPI_Ax3>& thePlane,
89 gp_Pnt& theFirstPoint, gp_Pnt& theSecondPoint,
90 gp_Pnt& theCenterPoint);
91
92private:
94 ModelAPI_Feature* myConstraint;
95
97 SketchPlugin_Sketch* mySketcher;
98
99 Handle(Prs3d_DimensionAspect) myAspect;
100
102 SketcherPrs_DimensionStyle* myStyleListener;
103
105 gp_Pnt myFirstPoint;
106 gp_Pnt mySecondPoint;
107 gp_Pnt myCenterPoint;
108 gp_Pnt myFlyOutPoint;
109
111};
112
113
114#endif
Feature function that represents the particular functionality of this operation.
Definition: ModelAPI_Feature.h:41
Feature for creation of the new part in PartSet.
Definition: SketchPlugin_Sketch.h:47
A class for representation of angle constraint.
Definition: SketcherPrs_Angle.h:39
DEFINE_STANDARD_RTTIEXT(SketcherPrs_Angle, PrsDim_AngleDimension) static bool IsReadyToDisplay(ModelAPI_Feature *theConstraint
Returns true if the constraint feature arguments are correctly filled to build AIS presentation.
std::shared_ptr< GeomAPI_Ax3 > plane() const
Returns sketcher plane.
Definition: SketcherPrs_Angle.h:61
Definition: SketcherPrs_DimensionStyle.h:43
Definition: SketcherPrs_DimensionStyle.h:41