0032806: Coding - get rid of unused headers [Contap to Extrema]
[occt.git] / src / DsgPrs / DsgPrs_IdenticPresentation.hxx
1 // Created on: 1997-01-03
2 // Created by: Stagiaire Flore Lautheanne
3 // Copyright (c) 1997-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 _DsgPrs_IdenticPresentation_HeaderFile
18 #define _DsgPrs_IdenticPresentation_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22
23 #include <Prs3d_Drawer.hxx>
24 #include <Prs3d_Presentation.hxx>
25
26 class TCollection_ExtendedString;
27 class gp_Pnt;
28 class gp_Ax2;
29 class gp_Elips;
30
31 class DsgPrs_IdenticPresentation 
32 {
33 public:
34
35   DEFINE_STANDARD_ALLOC
36
37   
38   //! draws a line between <aPntAttach> and
39   //! <aPntOffset>.
40   Standard_EXPORT static void Add (const Handle(Prs3d_Presentation)& aPresentation, const Handle(Prs3d_Drawer)& aDrawer, const TCollection_ExtendedString& aText, const gp_Pnt& aPntAttach, const gp_Pnt& aPntOffset);
41   
42   //! draws the 'identic' presentation by
43   //! drawing a line between <aFAttach> and
44   //! <aSAttach> , and a linkimg segment
45   //! between <aPntOffset> and its projection
46   //! on the precedent line.
47   Standard_EXPORT static void Add (const Handle(Prs3d_Presentation)& aPresentation, const Handle(Prs3d_Drawer)& aDrawer, const TCollection_ExtendedString& aText, const gp_Pnt& aFAttach, const gp_Pnt& aSAttach, const gp_Pnt& aPntOffset);
48   
49   //! draws the 'identic' presentation in the case of
50   //! circles : draws an arc of circle between
51   //! <aFAttach> and <aSAttach> of center <aCenter>
52   //! and of radius dist(aCenter, aFAttach), and
53   //! draws a segment between <aPntOffset> and
54   //! its projection on the arc.
55   Standard_EXPORT static void Add (const Handle(Prs3d_Presentation)& aPresentation, const Handle(Prs3d_Drawer)& aDrawer, const TCollection_ExtendedString& aText, const gp_Ax2& aAx2, const gp_Pnt& aCenter, const gp_Pnt& aFAttach, const gp_Pnt& aSAttach, const gp_Pnt& aPntOffset);
56   
57   //! draws the 'identic' presentation in the case of
58   //! circles : draws an arc of circle between
59   //! <aFAttach> and <aSAttach> of center <aCenter>
60   //! and of radius dist(aCenter, aFAttach), and
61   //! draws a segment between <aPntOffset> and <aPntOnCirc>
62   Standard_EXPORT static void Add (const Handle(Prs3d_Presentation)& aPresentation, const Handle(Prs3d_Drawer)& aDrawer, const TCollection_ExtendedString& aText, const gp_Ax2& aAx2, const gp_Pnt& aCenter, const gp_Pnt& aFAttach, const gp_Pnt& aSAttach, const gp_Pnt& aPntOffset, const gp_Pnt& aPntOnCirc);
63   
64   //! draws the 'identic' presentation in the case of
65   //! ellipses: draws an arc of the anEllipse
66   //! between <aFAttach> and <aSAttach> and
67   //! draws a segment between <aPntOffset> and <aPntOnElli>
68   Standard_EXPORT static void Add (const Handle(Prs3d_Presentation)& aPresentation, const Handle(Prs3d_Drawer)& aDrawer, const TCollection_ExtendedString& aText, const gp_Elips& anEllipse, const gp_Pnt& aFAttach, const gp_Pnt& aSAttach, const gp_Pnt& aPntOffset, const gp_Pnt& aPntOnElli);
69
70
71
72
73 protected:
74
75
76
77
78
79 private:
80
81
82
83
84
85 };
86
87
88
89
90
91
92
93 #endif // _DsgPrs_IdenticPresentation_HeaderFile