// Copyright (c) 1999-2012 OPEN CASCADE SAS // // The content of this file is subject to the Open CASCADE Technology Public // License Version 6.5 (the "License"). You may not use the content of this file // except in compliance with the License. Please obtain a copy of the License // at http://www.opencascade.org and read it completely before using this file. // // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France. // // The Original Code and all software distributed under the License is // distributed on an "AS IS" basis, without warranty of any kind, and the // Initial Developer hereby disclaims all such warranties, including without // limitation, any warranties of merchantability, fitness for a particular // purpose or non-infringement. Please see the License for the specific terms // and conditions governing the rights and limitations under the License. #include #include #include //======================================================================= //function : IntTools_Curve::IntTools_Curve //purpose : //======================================================================= IntTools_Curve::IntTools_Curve() { } //======================================================================= //function : IntTools_Curve::IntTools_Curve //purpose : //======================================================================= IntTools_Curve::IntTools_Curve(const Handle(Geom_Curve)& Curve3d, const Handle(Geom2d_Curve)& FirstCurve2d, const Handle(Geom2d_Curve)& SecondCurve2d) { SetCurves(Curve3d, FirstCurve2d, SecondCurve2d); } //======================================================================= //function : SetCurves //purpose : //======================================================================= void IntTools_Curve::SetCurves(const Handle(Geom_Curve)& Curve3d, const Handle(Geom2d_Curve)& FirstCurve2d, const Handle(Geom2d_Curve)& SecondCurve2d) { SetCurve(Curve3d); SetFirstCurve2d(FirstCurve2d); SetSecondCurve2d(SecondCurve2d); } //======================================================================= //function : HasBounds //purpose : //======================================================================= Standard_Boolean IntTools_Curve::HasBounds() const { Standard_Boolean bBounded; Handle(Geom_BoundedCurve) aC3DBounded = Handle(Geom_BoundedCurve)::DownCast(my3dCurve); bBounded=!aC3DBounded.IsNull(); return bBounded ; } //======================================================================= //function : Bounds //purpose : //======================================================================= void IntTools_Curve::Bounds(Standard_Real& aT1, Standard_Real& aT2, gp_Pnt& aP1, gp_Pnt& aP2) const { aT1=0.; aT2=0.; aP1.SetCoord(0.,0.,0.); aP2.SetCoord(0.,0.,0.); if (HasBounds()) { aT1=my3dCurve->FirstParameter(); aT2=my3dCurve->LastParameter(); my3dCurve->D0(aT1, aP1); my3dCurve->D0(aT2, aP2); } } //======================================================================= //function : D0 //purpose : //======================================================================= Standard_Boolean IntTools_Curve::D0(Standard_Real& aT, gp_Pnt& aP) const { Standard_Real aF, aL; aF=my3dCurve->FirstParameter(); aL=my3dCurve->LastParameter(); if (aTaL) { return Standard_False; } my3dCurve->D0(aT, aP); return Standard_True; } //======================================================================= //function : D0 //purpose : //======================================================================= GeomAbs_CurveType IntTools_Curve::Type() const { GeomAdaptor_Curve aGAC(my3dCurve); GeomAbs_CurveType aType=aGAC.GetType(); return aType; }