0027525: Coding - eliminate warnings on Windows for OCCT with static type of libraries
[occt.git] / src / DsgPrs / DsgPrs_IdenticPresentation.hxx
CommitLineData
42cf5bc1 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#include <Standard_Handle.hxx>
23
24#include <Prs3d_Drawer.hxx>
25class Prs3d_Presentation;
26class TCollection_ExtendedString;
27class gp_Pnt;
28class gp_Ax2;
29class gp_Elips;
30
31
32
33class DsgPrs_IdenticPresentation
34{
35public:
36
37 DEFINE_STANDARD_ALLOC
38
39
40 //! draws a line between <aPntAttach> and
41 //! <aPntOffset>.
42 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);
43
44 //! draws the 'identic' presentation by
45 //! drawing a line between <aFAttach> and
46 //! <aSAttach> , and a linkimg segment
47 //! between <aPntOffset> and its projection
48 //! on the precedent line.
49 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);
50
51 //! draws the 'identic' presentation in the case of
52 //! circles : draws an arc of circle between
53 //! <aFAttach> and <aSAttach> of center <aCenter>
54 //! and of radius dist(aCenter, aFAttach), and
55 //! draws a segment between <aPntOffset> and
56 //! its projection on the arc.
57 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);
58
59 //! draws the 'identic' presentation in the case of
60 //! circles : draws an arc of circle between
61 //! <aFAttach> and <aSAttach> of center <aCenter>
62 //! and of radius dist(aCenter, aFAttach), and
63 //! draws a segment between <aPntOffset> and <aPntOnCirc>
64 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);
65
66 //! draws the 'identic' presentation in the case of
67 //! ellipses: draws an arc of the anEllipse
68 //! between <aFAttach> and <aSAttach> and
69 //! draws a segment between <aPntOffset> and <aPntOnElli>
70 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);
71
72
73
74
75protected:
76
77
78
79
80
81private:
82
83
84
85
86
87};
88
89
90
91
92
93
94
95#endif // _DsgPrs_IdenticPresentation_HeaderFile