1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00
occt/src/Bisector/Bisector_FunctionInter.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

126 lines
3.8 KiB
C++

// Created on: 1994-04-05
// Created by: Yves FRICAUD
// Copyright (c) 1994-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.
#include <Bisector_BisecCC.hxx>
#include <Bisector_BisecPC.hxx>
#include <Bisector_Curve.hxx>
#include <Bisector_FunctionInter.hxx>
#include <Geom2d_Curve.hxx>
#include <gp.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_Vec2d.hxx>
#include <Precision.hxx>
//=============================================================================
//function :
// purpose :
//=============================================================================
Bisector_FunctionInter::Bisector_FunctionInter ()
{
}
//=============================================================================
//function :
// purpose :
//=============================================================================
Bisector_FunctionInter::Bisector_FunctionInter (const Handle(Geom2d_Curve)& C ,
const Handle(Bisector_Curve)& B1 ,
const Handle(Bisector_Curve)& B2 )
{
curve = C;
bisector1 = B1;
bisector2 = B2;
}
//=============================================================================
//function :
// purpose :
//=============================================================================
void Bisector_FunctionInter::Perform (const Handle(Geom2d_Curve)& C ,
const Handle(Bisector_Curve)& B1 ,
const Handle(Bisector_Curve)& B2 )
{
curve = C;
bisector1 = B1;
bisector2 = B2;
}
//=============================================================================
// function : Value
// purpose :
///=============================================================================
Standard_Boolean Bisector_FunctionInter::Value (const Standard_Real X,
Standard_Real& F)
{
gp_Pnt2d PC = curve ->Value(X);
gp_Pnt2d PB1 = bisector1 ->Value(X);
gp_Pnt2d PB2 = bisector2 ->Value(X);
F = PC.Distance(PB1) - PC.Distance(PB2);
return Standard_True;
}
//=============================================================================
//function : Derivative
// purpose :
//=============================================================================
Standard_Boolean Bisector_FunctionInter::Derivative(const Standard_Real X,
Standard_Real& D)
{
Standard_Real F;
return Values (X,F,D);
}
//=============================================================================
//function : Values
// purpose :
//=============================================================================
Standard_Boolean Bisector_FunctionInter::Values (const Standard_Real X,
Standard_Real& F,
Standard_Real& D)
{
gp_Pnt2d PC, PB1, PB2;
gp_Vec2d TC, TB1, TB2;
Standard_Real F1, F2, DF1, DF2;
curve ->D1(X,PC ,TC);
bisector1 ->D1(X,PB1,TB1);
bisector2 ->D1(X,PB2,TB2);
F1 = PC.Distance(PB1);
F2 = PC.Distance(PB2);
F = F1 - F2;
if (Abs(F1) < gp::Resolution()) {
DF1 = Precision::Infinite();
}
else {
DF1 = ((PC.X() - PB1.X())*(TC.X() - TB1.X()) +
(PC.Y() - PB1.Y())*(TC.Y() - TB1.Y()) )/F1;
}
if (Abs(F2) < gp::Resolution()) {
DF2 = Precision::Infinite();
}
else {
DF2 = ((PC.X() - PB2.X())*(TC.X() - TB2.X()) +
(PC.Y() - PB2.Y())*(TC.Y() - TB2.Y()) )/F2;
}
D = DF1 - DF2;
return Standard_True;
}