0027915: Foundation Classes - remove the class NCollection_QuickSort
[occt.git] / src / AIS / AIS_Plane.lxx
1 // Created on: 1997-03-06
2 // Created by: Robert COUBLANC
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 inline Standard_Boolean AIS_Plane::HasOwnSize() const
18 {return myHasOwnSize;}
19  
20 inline const Handle(Geom_Plane)& AIS_Plane::Component()
21 {return myComponent;}
22
23 inline AIS_TypeOfPlane AIS_Plane::TypeOfPlane()
24 {return myTypeOfPlane;}
25
26 inline Standard_Boolean AIS_Plane::IsXYZPlane()
27 {
28   return myIsXYZPlane;
29 }
30
31
32 inline Standard_Boolean AIS_Plane::CurrentMode()
33 {return myCurrentMode;}
34
35 inline void AIS_Plane::SetCurrentMode(const Standard_Boolean aCurrentMode)
36 {myCurrentMode = aCurrentMode;}
37
38 inline const gp_Pnt& AIS_Plane::Center() const 
39 {
40   return myCenter;
41 }
42
43 inline void AIS_Plane::SetCenter(const gp_Pnt& aCenter)
44 {
45   myCenter = aCenter;
46 }
47
48 inline Select3D_TypeOfSensitivity AIS_Plane::TypeOfSensitivity() const
49 {
50   return myTypeOfSensitivity;
51 }
52
53 inline void AIS_Plane::SetTypeOfSensitivity (const Select3D_TypeOfSensitivity& theTypeOfSensitivity)
54 {
55   myTypeOfSensitivity = theTypeOfSensitivity;
56 }