// Created on: 1992-05-06 // Created by: Laurent BUCHARD // Copyright (c) 1992-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. #ifndef IntCurve_IntConicConic_Tool_HeaderFile #define IntCurve_IntConicConic_Tool_HeaderFile #include #include #include // #include #include #include #include #include #include static Standard_Real PIpPI = M_PI + M_PI; //====================================================================== //========== P R O T O T Y P E S ============ //====================================================================== void Determine_Transition_LC(const IntRes2d_Position, gp_Vec2d&, const gp_Vec2d&, IntRes2d_Transition&, const IntRes2d_Position, gp_Vec2d&, const gp_Vec2d&, IntRes2d_Transition&, const Standard_Real); //====================================================================== Standard_Real NormalizeOnCircleDomain(const Standard_Real Param,const IntRes2d_Domain& Domain); //===================================================================== //==== C l a s s e I n t e r v a l !! Specifique !! ======== //===================================================================== class Interval { public: Standard_Real Binf; Standard_Real Bsup; Standard_Boolean HasFirstBound; Standard_Boolean HasLastBound; Standard_Boolean IsNull; Interval(); Interval(const Standard_Real a,const Standard_Real b); Interval(const IntRes2d_Domain& Domain); Interval( const Standard_Real a,const Standard_Boolean hf ,const Standard_Real b,const Standard_Boolean hl); Standard_Real Length(); Interval IntersectionWithBounded(const Interval& Inter); }; //====================================================================== //== C L A S S E P E R I O D I C I N T E R V A L (Specifique) //====================================================================== class PeriodicInterval { public: Standard_Real Binf; Standard_Real Bsup; Standard_Boolean isnull; void SetNull() { isnull=Standard_True; } Standard_Boolean IsNull() { return(isnull); } void Complement() { if(!isnull) { Standard_Real t=Binf; Binf=Bsup; Bsup=t+PIpPI; if(Binf>PIpPI) { Binf-=PIpPI; Bsup-=PIpPI; } } } Standard_Real Length() { return((isnull)? -100.0: Abs(Bsup-Binf)); } PeriodicInterval(const IntRes2d_Domain& Domain) { isnull=Standard_False; if(Domain.HasFirstPoint()) Binf=Domain.FirstParameter(); else Binf=-1.0; if(Domain.HasLastPoint()) Bsup=Domain.LastParameter(); else Bsup=20.0; } PeriodicInterval() { isnull=Standard_True; Binf=Bsup=0.0; } PeriodicInterval(const Standard_Real a,const Standard_Real b) { isnull=Standard_False; Binf=a; Bsup=b; if((b-a) < PIpPI) this->Normalize(); } void SetValues(const Standard_Real a,const Standard_Real b) { isnull=Standard_False; Binf=a; Bsup=b; if((b-a) < PIpPI) this->Normalize(); } void Normalize() { if(!isnull) { while(Binf>PIpPI) Binf-=PIpPI; while(Binf<0.0) Binf+=PIpPI; while(Bsup=(Binf+PIpPI)) Bsup-=PIpPI; } } PeriodicInterval FirstIntersection(PeriodicInterval& I1); PeriodicInterval SecondIntersection(PeriodicInterval& I2); }; #endif