// 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. //JCV 16/10/91 #include #include #include #include #include #include #include #include #include #include static Standard_Integer TheDegree = 2; static Standard_Integer MaxNbKnots = 2; static Standard_Integer MaxNbPoles = 3; //======================================================================= //function : Convert_ParabolaToBSplineCurve //purpose : //======================================================================= Convert_ParabolaToBSplineCurve::Convert_ParabolaToBSplineCurve (const gp_Parab2d& Prb, const Standard_Real U1 , const Standard_Real U2 ) : Convert_ConicToBSplineCurve (MaxNbPoles, MaxNbKnots, TheDegree) { Standard_DomainError_Raise_if( Abs(U2 - U1) < Epsilon(0.), "Convert_ParabolaToBSplineCurve"); Standard_Real UF = Min (U1, U2); Standard_Real UL = Max( U1, U2); Standard_Real p = Prb.Parameter(); nbPoles = 3; nbKnots = 2; isperiodic = Standard_False; knots->ChangeArray1()(1) = UF; mults->ChangeArray1()(1) = 3; knots->ChangeArray1()(2) = UL; mults->ChangeArray1()(2) = 3; weights->ChangeArray1()(1) = 1.; weights->ChangeArray1()(2) = 1.; weights->ChangeArray1()(3) = 1.; gp_Dir2d Ox = Prb.Axis().XDirection(); gp_Dir2d Oy = Prb.Axis().YDirection(); Standard_Real S = ( Ox.X() * Oy.Y() - Ox.Y() * Oy.X() > 0.) ? 1 : -1; // poles expressed in the reference mark poles->ChangeArray1()(1) = gp_Pnt2d( ( UF * UF) / ( 2. * p), S * UF ); poles->ChangeArray1()(2) = gp_Pnt2d( ( UF * UL) / ( 2. * p), S * ( UF + UL) / 2. ); poles->ChangeArray1()(3) = gp_Pnt2d( ( UL * UL) / ( 2. * p), S * UL ); // replace the bspline in the mark of the parabola gp_Trsf2d Trsf; Trsf.SetTransformation( Prb.Axis().XAxis(), gp::OX2d()); poles->ChangeArray1()(1).Transform( Trsf); poles->ChangeArray1()(2).Transform( Trsf); poles->ChangeArray1()(3).Transform( Trsf); }