mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
138 lines
4.3 KiB
C++
138 lines
4.3 KiB
C++
// Created on: 1992-05-06
|
|
// Created by: Laurent BUCHARD
|
|
// Copyright (c) 1992-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef IntCurve_IntConicConic_Tool_HeaderFile
|
|
#define IntCurve_IntConicConic_Tool_HeaderFile
|
|
|
|
|
|
#include <IntCurve_IntImpConicParConic.hxx>
|
|
#include <IntCurve_IConicTool.hxx>
|
|
#include <IntCurve_PConic.hxx>
|
|
// #include <IntCurve_IConicPConicTool.hxx>
|
|
#include <IntRes2d_Domain.hxx>
|
|
#include <IntRes2d_Transition.hxx>
|
|
#include <IntRes2d_Position.hxx>
|
|
#include <gp_Vec2d.hxx>
|
|
#include <gp.hxx>
|
|
|
|
|
|
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) Bsup+=PIpPI;
|
|
while(Bsup>=(Binf+PIpPI)) Bsup-=PIpPI;
|
|
}
|
|
}
|
|
|
|
PeriodicInterval FirstIntersection(PeriodicInterval& I1);
|
|
PeriodicInterval SecondIntersection(PeriodicInterval& I2);
|
|
};
|
|
|
|
|
|
#endif
|