0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / TopOpeBRepDS / TopOpeBRepDS_ShapeData.cxx
1 // Created on: 1995-11-13
2 // Created by: Jean Yves LEBEY
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
18 #include <TopOpeBRepDS_DataStructure.hxx>
19 #include <TopOpeBRepDS_ShapeData.hxx>
20
21 //=======================================================================
22 //function : TopOpeBRepDS_ShapeData
23 //purpose  : 
24 //=======================================================================
25 TopOpeBRepDS_ShapeData::TopOpeBRepDS_ShapeData() :
26   mySameDomainRef(0),
27   mySameDomainOri(TopOpeBRepDS_UNSHGEOMETRY),
28   mySameDomainInd(0),
29   myOrientation(TopAbs_FORWARD),
30   myOrientationDef(Standard_False),
31   myAncestorRank(0),
32   myKeep(Standard_True)
33 {
34 }
35
36 //=======================================================================
37 //function : Interferences
38 //purpose  : 
39 //=======================================================================
40
41 const TopOpeBRepDS_ListOfInterference& TopOpeBRepDS_ShapeData::Interferences() const
42 {
43   return myInterferences;
44 }
45
46 //=======================================================================
47 //function : ChangeInterferences
48 //purpose  : 
49 //=======================================================================
50
51 TopOpeBRepDS_ListOfInterference& TopOpeBRepDS_ShapeData::ChangeInterferences()
52 {
53   return myInterferences;
54 }
55
56 //=======================================================================
57 //function : Keep
58 //purpose  : 
59 //=======================================================================
60
61 Standard_Boolean TopOpeBRepDS_ShapeData::Keep() const
62 {
63   return myKeep;
64 }
65 //=======================================================================
66 //function : ChangeKeep
67 //purpose  : 
68 //=======================================================================
69
70 void TopOpeBRepDS_ShapeData::ChangeKeep(const Standard_Boolean b)
71 {
72   myKeep = b;
73 }