0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / Geom2dGcc / Geom2dGcc_QCurve.cxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15
16 #include <Geom2dAdaptor_Curve.hxx>
17 #include <Geom2dGcc_QCurve.hxx>
18
19 //#include <Geom2dAdaptor_Curve.hxx>
20 Geom2dAdaptor_Curve Geom2dGcc_QCurve::
21    Qualified () const { return TheQualified; }
22
23 GccEnt_Position Geom2dGcc_QCurve::
24    Qualifier () const { return TheQualifier; }
25
26 Standard_Boolean Geom2dGcc_QCurve::
27    IsUnqualified () const {
28      if (TheQualifier == GccEnt_unqualified ) { return Standard_True; }
29      else { return Standard_False; }
30    }
31
32 Standard_Boolean Geom2dGcc_QCurve::
33    IsEnclosing () const {
34      if (TheQualifier == GccEnt_enclosing) { return Standard_True; }
35      else { return Standard_False; }
36    }
37
38 Standard_Boolean Geom2dGcc_QCurve::
39    IsEnclosed () const {
40      if (TheQualifier == GccEnt_enclosed) { return Standard_True; }
41      else { return Standard_False; }
42    }
43
44 Standard_Boolean Geom2dGcc_QCurve::
45    IsOutside () const {
46      if (TheQualifier == GccEnt_outside) { return Standard_True; }
47      else { return Standard_False; }
48    }
49
50 Geom2dGcc_QCurve::
51    Geom2dGcc_QCurve (const Geom2dAdaptor_Curve&          Curve,
52                          const GccEnt_Position Qualifier) {
53    TheQualified = Curve;
54    TheQualifier = Qualifier;
55  }