0026738: Make Boolean operations safely treating arguments when running with fuzzy...
[occt.git] / src / IntTools / IntTools_Curve.lxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14//=======================================================================
15//function : SetCurve
16//purpose :
17//=======================================================================
b311480e 18inline void IntTools_Curve::SetCurve(const Handle(Geom_Curve)& Curve3d)
7fd59977 19{
20 my3dCurve = Curve3d;
21}
22
23//=======================================================================
24//function : SetFirstCurve2d
25//purpose :
26//=======================================================================
27 inline void IntTools_Curve::SetFirstCurve2d(const Handle(Geom2d_Curve)& FirstCurve2d)
28{
29 my2dCurve1 = FirstCurve2d;
30}
31//=======================================================================
32//function : SetSecondCurve2d
33//purpose :
34//=======================================================================
35 inline void IntTools_Curve::SetSecondCurve2d(const Handle(Geom2d_Curve)& SecondCurve2d)
36{
37 my2dCurve2 = SecondCurve2d;
38}
39
40//=======================================================================
41//function : Curve
42//purpose :
43//=======================================================================
44 inline const Handle(Geom_Curve)& IntTools_Curve::Curve() const
45{
46 return my3dCurve;
47}
48
49//=======================================================================
50//function : FirstCurve2d
51//purpose :
52//=======================================================================
53 inline const Handle(Geom2d_Curve)& IntTools_Curve::FirstCurve2d() const
54{
55 return my2dCurve1;
56}
57//=======================================================================
58//function : SecondCurve2d
59//purpose :
60//=======================================================================
61 inline const Handle(Geom2d_Curve)& IntTools_Curve::SecondCurve2d() const
62{
63 return my2dCurve2;
64}
65
66