0029915: Porting to VC 2017 : Regressions in Modeling Algorithms on VC 2017
[occt.git] / src / DsgPrs / DsgPrs_ParalPresentation.hxx
CommitLineData
42cf5bc1 1// Created on: 1995-11-28
2// Created by: Jean-Pierre COMBE
3// Copyright (c) 1995-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_ParalPresentation_HeaderFile
18#define _DsgPrs_ParalPresentation_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <Prs3d_Drawer.hxx>
25#include <DsgPrs_ArrowSide.hxx>
26class Prs3d_Presentation;
27class TCollection_ExtendedString;
28class gp_Pnt;
29class gp_Dir;
30
31
32//! A framework to define display of relations of parallelism between shapes.
33class DsgPrs_ParalPresentation
34{
35public:
36
37 DEFINE_STANDARD_ALLOC
38
39
40 //! Defines the display of elements showing relations of
41 //! parallelism between shapes.
42 //! These include the two points of attachment
43 //! AttachmentPoint1 and AttachmentPoint1, the
44 //! direction aDirection, and the offset point OffsetPoint.
45 //! These arguments are added to the presentation
46 //! object aPresentation. Their display attributes are
47 //! defined by the attribute manager aDrawer.
48 Standard_EXPORT static void Add (const Handle(Prs3d_Presentation)& aPresentation, const Handle(Prs3d_Drawer)& aDrawer, const TCollection_ExtendedString& aText, const gp_Pnt& AttachmentPoint1, const gp_Pnt& AttachmentPoint2, const gp_Dir& aDirection, const gp_Pnt& OffsetPoint);
49
50 //! Defines the display of elements showing relations of
51 //! parallelism between shapes.
52 //! These include the two points of attachment
53 //! AttachmentPoint1 and AttachmentPoint1, the
54 //! direction aDirection, the offset point OffsetPoint and
55 //! the text aText.
56 //! These arguments are added to the presentation
57 //! object aPresentation. Their display attributes are
58 //! defined by the attribute manager aDrawer.
59 Standard_EXPORT static void Add (const Handle(Prs3d_Presentation)& aPresentation, const Handle(Prs3d_Drawer)& aDrawer, const TCollection_ExtendedString& aText, const gp_Pnt& AttachmentPoint1, const gp_Pnt& AttachmentPoint2, const gp_Dir& aDirection, const gp_Pnt& OffsetPoint, const DsgPrs_ArrowSide ArrowSide);
60
61
62
63
64protected:
65
66
67
68
69
70private:
71
72
73
74
75
76};
77
78
79
80
81
82
83
84#endif // _DsgPrs_ParalPresentation_HeaderFile