0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_Pave.hxx
1 // Created on: 1994-11-14
2 // Created by: Jean Yves LEBEY
3 // Copyright (c) 1994-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 _TopOpeBRepBuild_Pave_HeaderFile
18 #define _TopOpeBRepBuild_Pave_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <TopoDS_Shape.hxx>
24 #include <Standard_Real.hxx>
25 #include <Standard_Boolean.hxx>
26 #include <TopOpeBRepDS_Kind.hxx>
27 #include <TopOpeBRepBuild_Loop.hxx>
28 class TopoDS_Shape;
29
30
31 class TopOpeBRepBuild_Pave;
32 DEFINE_STANDARD_HANDLE(TopOpeBRepBuild_Pave, TopOpeBRepBuild_Loop)
33
34
35 class TopOpeBRepBuild_Pave : public TopOpeBRepBuild_Loop
36 {
37
38 public:
39
40   
41   //! V = vertex, P = parameter of vertex <V>
42   //! bound = True if <V> is an old vertex
43   //! bound = False if <V> is a new vertex
44   Standard_EXPORT TopOpeBRepBuild_Pave(const TopoDS_Shape& V, const Standard_Real P, const Standard_Boolean bound);
45   
46   Standard_EXPORT void HasSameDomain (const Standard_Boolean b);
47   
48   Standard_EXPORT void SameDomain (const TopoDS_Shape& VSD);
49   
50   Standard_EXPORT Standard_Boolean HasSameDomain() const;
51   
52   Standard_EXPORT const TopoDS_Shape& SameDomain() const;
53   
54   Standard_EXPORT const TopoDS_Shape& Vertex() const;
55   
56   Standard_EXPORT TopoDS_Shape& ChangeVertex();
57   
58   Standard_EXPORT Standard_Real Parameter() const;
59   
60   Standard_EXPORT void Parameter (const Standard_Real Par);
61   
62   Standard_EXPORT TopOpeBRepDS_Kind& InterferenceType();
63   
64   Standard_EXPORT virtual Standard_Boolean IsShape() const Standard_OVERRIDE;
65   
66   Standard_EXPORT virtual const TopoDS_Shape& Shape() const Standard_OVERRIDE;
67   
68   Standard_EXPORT virtual void Dump() const Standard_OVERRIDE;
69
70
71
72
73   DEFINE_STANDARD_RTTIEXT(TopOpeBRepBuild_Pave,TopOpeBRepBuild_Loop)
74
75 protected:
76
77
78
79
80 private:
81
82
83   TopoDS_Shape myVertex;
84   Standard_Real myParam;
85   Standard_Boolean myIsShape;
86   Standard_Boolean myHasSameDomain;
87   TopoDS_Shape mySameDomain;
88   TopOpeBRepDS_Kind myIntType;
89
90
91 };
92
93
94
95
96
97
98
99 #endif // _TopOpeBRepBuild_Pave_HeaderFile