// Created on: 1996-03-12 // Created by: Bruno DUMORTIER // Copyright (c) 1995-1999 Matra Datavision // 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 : Geom2dConvert_BSplineCurveToBezierCurve //purpose : //======================================================================= Geom2dConvert_BSplineCurveToBezierCurve::Geom2dConvert_BSplineCurveToBezierCurve (const Handle(Geom2d_BSplineCurve)& BasisCurve) { myCurve = Handle(Geom2d_BSplineCurve)::DownCast(BasisCurve->Copy()); // periodic curve can't be converted correctly by two main reasons: // last pole (equal to first one) is missing; // poles recomputation using default boor scheme is fails. if(myCurve->IsPeriodic()) myCurve->SetNotPeriodic(); Standard_Real Uf = myCurve->FirstParameter(); Standard_Real Ul = myCurve->LastParameter(); myCurve->Segment(Uf,Ul); myCurve->IncreaseMultiplicity(myCurve->FirstUKnotIndex(), myCurve->LastUKnotIndex(), myCurve->Degree()); } //======================================================================= //function : Geom2dConvert_BSplineCurveToBezierCurve //purpose : //======================================================================= Geom2dConvert_BSplineCurveToBezierCurve::Geom2dConvert_BSplineCurveToBezierCurve (const Handle(Geom2d_BSplineCurve)& BasisCurve, const Standard_Real U1, const Standard_Real U2, const Standard_Real ParametricTolerance) { if (U2 - U1 < ParametricTolerance) Standard_DomainError::Raise("GeomConvert_BSplineCurveToBezierSurface"); Standard_Real Uf = U1, Ul = U2; Standard_Real PTol = ParametricTolerance/2 ; Standard_Integer I1, I2; myCurve = Handle(Geom2d_BSplineCurve)::DownCast(BasisCurve->Copy()); if(myCurve->IsPeriodic()) myCurve->SetNotPeriodic(); myCurve->LocateU(U1, PTol, I1, I2); if (I1==I2) { // On est sur le noeud if ( myCurve->Knot(I1) > U1) Uf = myCurve->Knot(I1); } myCurve->LocateU(U2, PTol, I1, I2); if (I1==I2) { // On est sur le noeud if ( myCurve->Knot(I1) < U2) Ul = myCurve->Knot(I1); } myCurve->Segment(Uf, Ul); myCurve->IncreaseMultiplicity(myCurve->FirstUKnotIndex(), myCurve->LastUKnotIndex(), myCurve->Degree()); } //======================================================================= //function : Arc //purpose : //======================================================================= Handle(Geom2d_BezierCurve) Geom2dConvert_BSplineCurveToBezierCurve::Arc (const Standard_Integer Index) { if ( Index < 1 || Index > myCurve->NbKnots()-1) { Standard_OutOfRange::Raise("Geom2dConvert_BSplineCurveToBezierCurve"); } Standard_Integer Deg = myCurve->Degree(); TColgp_Array1OfPnt2d Poles(1,Deg+1); Handle(Geom2d_BezierCurve) C; if ( myCurve->IsRational()) { TColStd_Array1OfReal Weights(1,Deg+1); for ( Standard_Integer i = 1; i <= Deg+1; i++) { Poles(i) = myCurve->Pole(i+Deg*(Index-1)); Weights(i) = myCurve->Weight(i+Deg*(Index-1)); } C = new Geom2d_BezierCurve(Poles,Weights); } else { for ( Standard_Integer i = 1; i <= Deg+1; i++) { Poles(i) = myCurve->Pole(i+Deg*(Index-1)); } C = new Geom2d_BezierCurve(Poles); } return C; } //======================================================================= //function : Arcs //purpose : //======================================================================= void Geom2dConvert_BSplineCurveToBezierCurve::Arcs (TColGeom2d_Array1OfBezierCurve& Curves) { Standard_Integer n = NbArcs(); for ( Standard_Integer i = 1; i <= n; i++) { Curves(i) = Arc(i); } } //======================================================================= //function : Knots //purpose : //======================================================================= void Geom2dConvert_BSplineCurveToBezierCurve::Knots (TColStd_Array1OfReal& TKnots) const { Standard_Integer ii, kk; for (ii = 1, kk = TKnots.Lower(); ii <=myCurve->NbKnots(); ii++, kk++) TKnots(kk) = myCurve->Knot(ii); } //======================================================================= //function : NbArcs //purpose : //======================================================================= Standard_Integer Geom2dConvert_BSplineCurveToBezierCurve::NbArcs() const { return (myCurve->NbKnots()-1); }