0027756: Visualization - add Draw() method taking Graphic3d_Group to tools Prs3d_Arro...
[occt.git] / src / AIS / AIS_Chamf3dDimension.hxx
1 // Created on: 1996-12-05
2 // Created by: Odile Olivier
3 // Copyright (c) 1996-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _AIS_Chamf3dDimension_HeaderFile
18 #define _AIS_Chamf3dDimension_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <gp_Pnt.hxx>
24 #include <gp_Dir.hxx>
25 #include <AIS_Relation.hxx>
26 #include <Standard_Real.hxx>
27 #include <DsgPrs_ArrowSide.hxx>
28 #include <AIS_KindOfDimension.hxx>
29 #include <Standard_Boolean.hxx>
30 #include <PrsMgr_PresentationManager3d.hxx>
31 #include <Standard_Integer.hxx>
32 #include <SelectMgr_Selection.hxx>
33 class TopoDS_Shape;
34 class TCollection_ExtendedString;
35 class gp_Pnt;
36 class Prs3d_Presentation;
37 class Prs3d_Projector;
38 class Geom_Transformation;
39
40
41 class AIS_Chamf3dDimension;
42 DEFINE_STANDARD_HANDLE(AIS_Chamf3dDimension, AIS_Relation)
43
44 //! A framework to define display of 3D chamfers.
45 //! A chamfer is displayed with arrows and text. The text
46 //! gives the length of the chamfer if it is a symmetrical
47 //! chamfer, or the angle if it is not.
48 class AIS_Chamf3dDimension : public AIS_Relation
49 {
50
51 public:
52
53   
54   //! Constructs a display object for 3D chamfers.
55   //! This object is defined by the shape aFShape, the
56   //! dimension aVal and the text aText.
57   Standard_EXPORT AIS_Chamf3dDimension(const TopoDS_Shape& aFShape, const Standard_Real aVal, const TCollection_ExtendedString& aText);
58   
59   //! Constructs a display object for 3D chamfers.
60   //! This object is defined by the shape aFShape, the
61   //! dimension aVal, the text aText, the point of origin of
62   //! the chamfer aPosition, the type of arrow aSymbolPrs
63   //! with the size anArrowSize.
64   Standard_EXPORT AIS_Chamf3dDimension(const TopoDS_Shape& aFShape, const Standard_Real aVal, const TCollection_ExtendedString& aText, const gp_Pnt& aPosition, const DsgPrs_ArrowSide aSymbolPrs, const Standard_Real anArrowSize = 0.0);
65   
66   //! Indicates that we are concerned with a 3d length.
67     virtual AIS_KindOfDimension KindOfDimension() const Standard_OVERRIDE;
68   
69   //! Returns true if the 3d chamfer dimension is movable.
70     virtual Standard_Boolean IsMovable() const Standard_OVERRIDE;
71   
72   //! computes the presentation according to a point of view
73   //! given by <aProjector>.
74   //! To be Used when the associated degenerated Presentations
75   //! have been transformed by <aTrsf> which is not a Pure
76   //! Translation. The HLR Prs can't be deducted automatically
77   //! WARNING :<aTrsf> must be applied
78   //! to the object to display before computation  !!!
79   Standard_EXPORT virtual void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Geom_Transformation)& aTrsf, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
80
81
82
83
84   DEFINE_STANDARD_RTTIEXT(AIS_Chamf3dDimension,AIS_Relation)
85
86 protected:
87
88
89
90
91 private:
92
93   
94   Standard_EXPORT void Compute (const Handle(PrsMgr_PresentationManager3d)& aPresentationManager, const Handle(Prs3d_Presentation)& aPresentation, const Standard_Integer aMode = 0) Standard_OVERRIDE;
95   
96   Standard_EXPORT void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
97   
98   Standard_EXPORT virtual void ComputeSelection (const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer aMode) Standard_OVERRIDE;
99
100   gp_Pnt myPntAttach;
101   gp_Dir myDir;
102
103
104 };
105
106
107 #include <AIS_Chamf3dDimension.lxx>
108
109
110
111
112
113 #endif // _AIS_Chamf3dDimension_HeaderFile