1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/GccAna/GccAna_CircLin2dBisec.cxx
ski 9775fa6110 0026937: Eliminate NO_CXX_EXCEPTION macro support
Macro NO_CXX_EXCEPTION was removed from code.
Method Raise() was replaced by explicit throw statement.
Method Standard_Failure::Caught() was replaced by normal C++mechanism of exception transfer.
Method Standard_Failure::Caught() is deprecated now.
Eliminated empty constructors.
Updated samples.
Eliminate empty method ChangeValue from NCollection_Map class.
Removed not operable methods from NCollection classes.
2017-02-02 16:35:54 +03:00

146 lines
5.4 KiB
C++

// Created on: 1991-10-11
// Created by: Remi GILET
// Copyright (c) 1991-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.
//=========================================================================
// CREATION of the BISSECTICE between a CIRCLE and a STRAIGHT LINE. +
//=========================================================================
#include <GccAna_CircLin2dBisec.hxx>
#include <GccInt_Bisec.hxx>
#include <GccInt_BLine.hxx>
#include <GccInt_BParab.hxx>
#include <gp.hxx>
#include <gp_Ax2d.hxx>
#include <gp_Circ2d.hxx>
#include <gp_Dir2d.hxx>
#include <gp_Lin2d.hxx>
#include <gp_XY.hxx>
#include <Standard_OutOfRange.hxx>
#include <StdFail_NotDone.hxx>
//=========================================================================
GccAna_CircLin2dBisec::
GccAna_CircLin2dBisec (const gp_Circ2d& Circle ,
const gp_Lin2d& Line ):
circle(Circle),
line(Line)
{
//=========================================================================
// Initialization of fields : +
// - circle +
// - line (straight line.) +
// - NbrSol (number of solution.) +
// - WellDone (Booleen showing success or failure of algorithm). +
//=========================================================================
NbrSol = 2;
WellDone = Standard_True;
}
//=========================================================================
// Processing. +
// Return coordinates of origins of the straight line (xloc,yloc) and the +
// circle (xcencir, ycencir). +
// Also return the coordinates of the direction of the straight line (xdir, +
// ydir) and the radius of circle R1. +
// Check at which side of the straight line is found the center of the circle +
// to orientate the parabola (sign). +
// Create axis of each parabola (axeparab1, axeparb2), then +
// two parabolas (biscirlin1, biscirlin1). +
//=========================================================================
Handle(GccInt_Bisec) GccAna_CircLin2dBisec::
ThisSolution (const Standard_Integer Index) const
{
if (!WellDone) throw StdFail_NotDone();
if ((Index <=0) || (Index > NbrSol)) throw Standard_OutOfRange();
Handle(GccInt_Bisec) bissol;
Standard_Real xdir = line.Direction().X();
Standard_Real ydir = line.Direction().Y();
Standard_Real xloc = line.Location().X();
Standard_Real yloc = line.Location().Y();
Standard_Real xcencir = circle.Location().X();
Standard_Real ycencir = circle.Location().Y();
Standard_Real R1 = circle.Radius();
Standard_Real dist = line.Distance(circle.Location());
if ((Abs(line.Distance(circle.Location())-circle.Radius())
<= gp::Resolution()) && (Index == 1)) {
gp_Lin2d biscirlin1(circle.Location(),gp_Dir2d(-ydir,xdir));
bissol = new GccInt_BLine(biscirlin1);
// ==========================================================
}
else {
Standard_Integer signe;
if ((-ydir*(xcencir-xloc)+xdir*(ycencir-yloc)) > 0.0) {
signe = 1;
}
else {
signe = -1;
}
gp_Ax2d axeparab1;
// gp_Ax2d axeparab2;
gp_Parab2d biscirlin;
if (dist != R1) {
if (Index == 1) {
axeparab1=gp_Ax2d(gp_Pnt2d(gp_XY(xcencir+signe*ydir*(dist+R1)/2,
ycencir-signe*xdir*(dist+R1)/2.)),
gp_Dir2d(-signe*ydir,signe*xdir));
biscirlin = gp_Parab2d(axeparab1,(dist+R1)/2.0);
}
else {
if (dist < R1) {
axeparab1=gp_Ax2d(gp_Pnt2d(gp_XY(xcencir+signe*ydir*(dist-R1)/2,
ycencir-signe*xdir*(dist-R1)/2.)),
gp_Dir2d(signe*ydir,-signe*xdir));
}
else {
axeparab1=gp_Ax2d(gp_Pnt2d(gp_XY(xcencir+signe*ydir*(dist-R1)/2,
ycencir-signe*xdir*(dist-R1)/2.)),
gp_Dir2d(-signe*ydir,signe*xdir));
}
biscirlin = gp_Parab2d(axeparab1,Abs(dist-R1)/2.0);
}
bissol = new GccInt_BParab(biscirlin);
// ==========================================================
}
else {
axeparab1 = gp_Ax2d(gp_Pnt2d(gp_XY(xcencir+signe*ydir*(dist+R1)/2.,
ycencir-signe*xdir*(dist+R1)/2.)),
gp_Dir2d(signe*(-ydir),signe*xdir));
biscirlin = gp_Parab2d(axeparab1,R1);
bissol = new GccInt_BParab(biscirlin);
// ==========================================================
}
}
return bissol;
}
//=========================================================================
Standard_Boolean GccAna_CircLin2dBisec::
IsDone () const { return WellDone; }
Standard_Integer GccAna_CircLin2dBisec::
NbSolutions () const { return NbrSol; }