0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / AIS / AIS_PlaneTrihedron.hxx
1 // Created on: 1996-12-13
2 // Created by: Jean-Pierre COMBE/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_PlaneTrihedron_HeaderFile
18 #define _AIS_PlaneTrihedron_HeaderFile
19
20 #include <AIS_InteractiveObject.hxx>
21 #include <TCollection_AsciiString.hxx>
22
23 class AIS_Line;
24 class AIS_Point;
25 class Geom_Plane;
26
27 //! To construct a selectable 2d axis system in a 3d
28 //! drawing. This can be placed anywhere in the 3d
29 //! system, and provides a coordinate system for
30 //! drawing curves and shapes in a plane.
31 //! There are 3 selection modes:
32 //! -   mode 0   selection of the whole plane "trihedron"
33 //! -   mode 1   selection of the origin of the plane "trihedron"
34 //! -   mode 2   selection of the axes.
35 //! Warning
36 //! For the presentation of planes and trihedra, the
37 //! millimetre is default unit of length, and 100 the default
38 //! value for the representation of the axes. If you modify
39 //! these dimensions, you must temporarily recover the
40 //! Drawer object. From inside it, take the Aspects in
41 //! which   the values for length are stocked, for example,
42 //! PlaneAspect for planes and LineAspect for
43 //! trihedra. Change these values and recalculate the presentation.
44 class AIS_PlaneTrihedron : public AIS_InteractiveObject
45 {
46   DEFINE_STANDARD_RTTIEXT(AIS_PlaneTrihedron, AIS_InteractiveObject)
47 public:
48
49   //! Initializes the plane aPlane. The plane trihedron is
50   //! constructed from this and an axis.
51   Standard_EXPORT AIS_PlaneTrihedron(const Handle(Geom_Plane)& aPlane);
52   
53   //! Returns the component specified in SetComponent.
54   Standard_EXPORT Handle(Geom_Plane) Component();
55   
56   //! Creates an instance of the component object aPlane.
57   Standard_EXPORT void SetComponent (const Handle(Geom_Plane)& aPlane);
58   
59   //! Returns the "XAxis".
60   Standard_EXPORT Handle(AIS_Line) XAxis() const;
61   
62   //! Returns the "YAxis".
63   Standard_EXPORT Handle(AIS_Line) YAxis() const;
64   
65   //! Returns the point of origin of the plane trihedron.
66   Standard_EXPORT Handle(AIS_Point) Position() const;
67   
68   //! Sets the length of the X and Y axes.
69   Standard_EXPORT void SetLength (const Standard_Real theLength);
70   
71   //! Returns the length of X and Y axes.
72   Standard_EXPORT Standard_Real GetLength() const;
73   
74   //! Returns true if the display mode selected, aMode, is valid.
75   Standard_EXPORT Standard_Boolean AcceptDisplayMode (const Standard_Integer aMode) const Standard_OVERRIDE;
76
77   virtual Standard_Integer Signature() const Standard_OVERRIDE { return 4; }
78
79   //! Returns datum as the type of Interactive Object.
80   virtual AIS_KindOfInteractive Type() const Standard_OVERRIDE { return AIS_KindOfInteractive_Datum; }
81
82   //! Allows you to provide settings for the color aColor.
83   Standard_EXPORT virtual void SetColor (const Quantity_Color& theColor) Standard_OVERRIDE;
84
85   void SetXLabel (const TCollection_AsciiString& theLabel) { myXLabel = theLabel; }
86
87   void SetYLabel (const TCollection_AsciiString& theLabel) { myYLabel = theLabel; }
88
89 protected:
90
91   Standard_EXPORT virtual void Compute (const Handle(PrsMgr_PresentationManager3d)& aPresentationManager, const Handle(Prs3d_Presentation)& aPresentation, const Standard_Integer aMode = 0) Standard_OVERRIDE;
92
93 private:
94
95   Standard_EXPORT void ComputeSelection (const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer aMode) Standard_OVERRIDE;
96
97 private:
98
99   Handle(Geom_Plane) myPlane;
100   Handle(AIS_InteractiveObject) myShapes[3];
101   TCollection_AsciiString myXLabel;
102   TCollection_AsciiString myYLabel;
103
104 };
105
106 DEFINE_STANDARD_HANDLE(AIS_PlaneTrihedron, AIS_InteractiveObject)
107
108 #endif // _AIS_PlaneTrihedron_HeaderFile