File indexing completed on 2026-09-23 09:17:14
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _DrawDim_Angle_HeaderFile
0018 #define _DrawDim_Angle_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <TopoDS_Face.hxx>
0024 #include <DrawDim_Dimension.hxx>
0025 class Draw_Display;
0026
0027 class DrawDim_Angle : public DrawDim_Dimension
0028 {
0029
0030 public:
0031 Standard_EXPORT DrawDim_Angle(const TopoDS_Face& plane1, const TopoDS_Face& plane2);
0032
0033 Standard_EXPORT const TopoDS_Face& Plane1() const;
0034
0035 Standard_EXPORT void Plane1(const TopoDS_Face& plane);
0036
0037 Standard_EXPORT const TopoDS_Face& Plane2() const;
0038
0039 Standard_EXPORT void Plane2(const TopoDS_Face& plane);
0040
0041 Standard_EXPORT void DrawOn(Draw_Display& dis) const override;
0042
0043 DEFINE_STANDARD_RTTIEXT(DrawDim_Angle, DrawDim_Dimension)
0044
0045 private:
0046 TopoDS_Face myPlane1;
0047 TopoDS_Face myPlane2;
0048 };
0049
0050 #endif