1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/LocOpe/LocOpe_CSIntersector.cxx
dpasukhi 4ab54d60ef Coding - Resolving C26498 warning
C26498 - marking variables constexpr to improve performance
2024-09-14 20:26:41 +00:00

582 lines
15 KiB
C++

// Created on: 1996-06-11
// Created by: Jacques GOUSSARD
// Copyright (c) 1996-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 <Geom_Circle.hxx>
#include <GeomAdaptor_Curve.hxx>
#include <IntCurvesFace_Intersector.hxx>
#include <LocOpe_CSIntersector.hxx>
#include <LocOpe_SequenceOfPntFace.hxx>
#include <Precision.hxx>
#include <Standard_ConstructionError.hxx>
#include <Standard_OutOfRange.hxx>
#include <StdFail_NotDone.hxx>
#include <TopExp_Explorer.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Shape.hxx>
static Standard_Boolean LocAfter (const LocOpe_SequenceOfPntFace&,
const Standard_Real,
const Standard_Real,
TopAbs_Orientation&,
Standard_Integer&,
Standard_Integer&);
static Standard_Boolean LocBefore (const LocOpe_SequenceOfPntFace&,
const Standard_Real,
const Standard_Real,
TopAbs_Orientation&,
Standard_Integer&,
Standard_Integer&);
static Standard_Boolean LocAfter (const LocOpe_SequenceOfPntFace&,
const Standard_Integer,
const Standard_Real,
TopAbs_Orientation&,
Standard_Integer&,
Standard_Integer&);
static void AddPoints(IntCurvesFace_Intersector&,
LocOpe_SequenceOfPntFace&,
const TopoDS_Face&);
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void LocOpe_CSIntersector::Init(const TopoDS_Shape& S)
{
myDone = Standard_False;
myShape = S;
if (myPoints != NULL) {
delete [] (LocOpe_SequenceOfPntFace *)myPoints;
myPoints = NULL;
}
myNbelem = 0;
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void LocOpe_CSIntersector::Perform(const LocOpe_SequenceOfLin& Slin)
{
if (myShape.IsNull() || Slin.Length() <= 0) {
throw Standard_ConstructionError();
}
myDone = Standard_False;
myNbelem = Slin.Length();
if (myPoints != NULL) {
delete [] (LocOpe_SequenceOfPntFace *)myPoints;
}
myPoints =
(LocOpe_SequenceOfPntFace *) new LocOpe_SequenceOfPntFace[myNbelem];
constexpr Standard_Real binf = RealFirst();
constexpr Standard_Real bsup = RealLast();
TopExp_Explorer exp(myShape,TopAbs_FACE);
for (; exp.More(); exp.Next()) {
const TopoDS_Face& theface = TopoDS::Face(exp.Current());
IntCurvesFace_Intersector theInt(theface,Precision::PConfusion());
for (Standard_Integer i = 1; i<=myNbelem; i++) {
theInt.Perform(Slin(i),binf,bsup);
if (theInt.IsDone()) {
AddPoints(theInt,(((LocOpe_SequenceOfPntFace*)myPoints)[i-1]),theface);
}
}
}
myDone = Standard_True;
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void LocOpe_CSIntersector::Perform(const LocOpe_SequenceOfCirc& Scir)
{
if (myShape.IsNull() || Scir.Length() <= 0) {
throw Standard_ConstructionError();
}
myDone = Standard_False;
myNbelem = Scir.Length();
if (myPoints != NULL) {
delete [] (LocOpe_SequenceOfPntFace *)myPoints;
}
myPoints =
(LocOpe_SequenceOfPntFace *) new LocOpe_SequenceOfPntFace[myNbelem];
TopExp_Explorer exp(myShape,TopAbs_FACE);
Handle(GeomAdaptor_Curve) HC = new GeomAdaptor_Curve ();
Standard_Real binf = 0.;
Standard_Real bsup = 2.*M_PI;
for (; exp.More(); exp.Next()) {
const TopoDS_Face& theface = TopoDS::Face(exp.Current());
IntCurvesFace_Intersector theInt(theface,0.);
for (Standard_Integer i = 1; i<=myNbelem; i++) {
HC->Load(new Geom_Circle(Scir(i)));
theInt.Perform(HC,binf,bsup);
if (theInt.IsDone()) {
AddPoints(theInt,(((LocOpe_SequenceOfPntFace*)myPoints)[i-1]),theface);
}
}
}
myDone = Standard_True;
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void LocOpe_CSIntersector::Perform(const TColGeom_SequenceOfCurve& Scur)
{
if (myShape.IsNull() || Scur.Length() <= 0) {
throw Standard_ConstructionError();
}
myDone = Standard_False;
myNbelem = Scur.Length();
if (myPoints != NULL) {
delete [] (LocOpe_SequenceOfPntFace *)myPoints;
}
myPoints =
(LocOpe_SequenceOfPntFace *) new LocOpe_SequenceOfPntFace[myNbelem];
TopExp_Explorer exp(myShape,TopAbs_FACE);
Handle(GeomAdaptor_Curve) HC = new GeomAdaptor_Curve ();
for (; exp.More(); exp.Next()) {
const TopoDS_Face& theface = TopoDS::Face(exp.Current());
IntCurvesFace_Intersector theInt(theface,0.);
for (Standard_Integer i = 1; i<=myNbelem; i++) {
if (Scur(i).IsNull()) {
continue;
}
HC->Load(Scur(i));
Standard_Real binf = HC->FirstParameter();
Standard_Real bsup = HC->LastParameter();
theInt.Perform(HC,binf,bsup);
if (theInt.IsDone()) {
AddPoints(theInt,(((LocOpe_SequenceOfPntFace*)myPoints)[i-1]),theface);
}
}
}
myDone = Standard_True;
}
//=======================================================================
//function : NbPoints
//purpose :
//=======================================================================
Standard_Integer LocOpe_CSIntersector::NbPoints
(const Standard_Integer I) const
{
if (!myDone) {throw StdFail_NotDone();}
if (I <= 0 || I > myNbelem) {
throw Standard_OutOfRange();
}
return ((LocOpe_SequenceOfPntFace *)myPoints)[I-1].Length();
}
//=======================================================================
//function : Point
//purpose :
//=======================================================================
const LocOpe_PntFace& LocOpe_CSIntersector::
Point(const Standard_Integer I,
const Standard_Integer Index) const
{
if (!myDone) {throw StdFail_NotDone();}
if (I <= 0 || I > myNbelem) {
throw Standard_OutOfRange();
}
return ((LocOpe_SequenceOfPntFace *)myPoints)[I-1](Index);
}
//=======================================================================
//function : Destroy
//purpose :
//=======================================================================
void LocOpe_CSIntersector::Destroy()
{
if (myPoints != NULL) {
delete [] (LocOpe_SequenceOfPntFace *)myPoints;
myPoints = NULL;
}
}
//=======================================================================
//function : LocalizeAfter
//purpose :
//=======================================================================
Standard_Boolean LocOpe_CSIntersector::LocalizeAfter
(const Standard_Integer I,
const Standard_Real From,
const Standard_Real Tol,
TopAbs_Orientation& Or,
Standard_Integer& IndFrom,
Standard_Integer& IndTo) const
{
if (!myDone) {
throw StdFail_NotDone();
}
if (I <= 0 || I > myNbelem) {
throw Standard_OutOfRange();
}
return LocAfter((((LocOpe_SequenceOfPntFace*)myPoints)[I-1]),
From,Tol,Or,IndFrom,IndTo);
}
//=======================================================================
//function : LocalizeBefore
//purpose :
//=======================================================================
Standard_Boolean LocOpe_CSIntersector::LocalizeBefore
(const Standard_Integer I,
const Standard_Real From,
const Standard_Real Tol,
TopAbs_Orientation& Or,
Standard_Integer& IndFrom,
Standard_Integer& IndTo) const
{
if (!myDone) {
throw StdFail_NotDone();
}
if (I <= 0 || I > myNbelem) {
throw Standard_OutOfRange();
}
return LocBefore(((LocOpe_SequenceOfPntFace*)myPoints)[I-1],
From,Tol,Or,IndFrom,IndTo);
}
//=======================================================================
//function : LocalizeAfter
//purpose :
//=======================================================================
Standard_Boolean LocOpe_CSIntersector::LocalizeAfter
(const Standard_Integer I,
const Standard_Integer FromInd,
const Standard_Real Tol,
TopAbs_Orientation& Or,
Standard_Integer& IndFrom,
Standard_Integer& IndTo) const
{
if (!myDone) {
throw StdFail_NotDone();
}
if (I <= 0 || I > myNbelem) {
throw Standard_OutOfRange();
}
return LocAfter(((LocOpe_SequenceOfPntFace*)myPoints)[I-1],
FromInd,Tol,Or,IndFrom,IndTo);
}
//=======================================================================
//function : LocalizeBefore
//purpose :
//=======================================================================
Standard_Boolean LocOpe_CSIntersector::LocalizeBefore
(const Standard_Integer I,
const Standard_Integer FromInd,
const Standard_Real Tol,
TopAbs_Orientation& Or,
Standard_Integer& IndFrom,
Standard_Integer& IndTo) const
{
if (!myDone) {
throw StdFail_NotDone();
}
if (I <= 0 || I > myNbelem) {
throw Standard_OutOfRange();
}
return LocBefore(((LocOpe_SequenceOfPntFace*)myPoints)[I-1],
FromInd,Tol,Or,IndFrom,IndTo);
}
//=======================================================================
//function : LocAfter
//purpose :
//=======================================================================
static Standard_Boolean LocAfter (const LocOpe_SequenceOfPntFace& Spt,
const Standard_Real From,
const Standard_Real Tol,
TopAbs_Orientation& Or,
Standard_Integer& IndFrom,
Standard_Integer& IndTo)
{
Standard_Real param,FMEPS = From - Tol;
Standard_Integer i,ifirst,nbpoints = Spt.Length();
for (ifirst=1; ifirst<=nbpoints; ifirst++) {
if (Spt(ifirst).Parameter() >= FMEPS) {
break;
}
}
Standard_Boolean RetVal = Standard_False;
if (ifirst <= nbpoints) {
i = ifirst;
IndFrom = ifirst;
Standard_Boolean found = Standard_False;
while (!found) {
Or = Spt(i).Orientation();
param = Spt(i).Parameter();
i = i+1;
while (i<=nbpoints) {
if (Spt(i).Parameter()-param <= Tol) {
if (Or != TopAbs_EXTERNAL && Or != Spt(i).Orientation()) {
Or = TopAbs_EXTERNAL;
}
i++;
}
else {
break;
}
}
if (Or == TopAbs_EXTERNAL) {
found = (i > nbpoints);
IndFrom = i;
}
else { // on a une intersection franche
IndTo = i-1;
found = Standard_True;
RetVal = Standard_True;
}
}
}
return RetVal;
}
//=======================================================================
//function : LocBefore
//purpose :
//=======================================================================
static Standard_Boolean LocBefore (const LocOpe_SequenceOfPntFace& Spt,
const Standard_Real From,
const Standard_Real Tol,
TopAbs_Orientation& Or,
Standard_Integer& IndFrom,
Standard_Integer& IndTo)
{
Standard_Real param,FPEPS = From + Tol;
Standard_Integer i,ifirst,nbpoints = Spt.Length();
for (ifirst=nbpoints; ifirst>=1; ifirst--) {
if (Spt(ifirst).Parameter() <= FPEPS) {
break;
}
}
Standard_Boolean RetVal = Standard_False;
if (ifirst >= 1) {
i = ifirst;
IndTo = ifirst;
Standard_Boolean found = Standard_False;
while (!found) {
Or = Spt(i).Orientation();
param = Spt(i).Parameter();
i = i-1;
while (i>=1) {
if (param - Spt(i).Parameter() <= Tol) {
if (Or != TopAbs_EXTERNAL && Or != Spt(i).Orientation()) {
Or = TopAbs_EXTERNAL;
}
i--;
}
else {
break;
}
}
if (Or == TopAbs_EXTERNAL) {
found = (i < 1);
IndTo = i;
}
else { // on a une intersection franche
IndFrom = i+1;
found = Standard_True;
RetVal = Standard_True;
}
}
}
return RetVal;
}
//=======================================================================
//function : LocAfter
//purpose :
//=======================================================================
static Standard_Boolean LocAfter (const LocOpe_SequenceOfPntFace& Spt,
const Standard_Integer FromInd,
const Standard_Real Tol,
TopAbs_Orientation& Or,
Standard_Integer& IndFrom,
Standard_Integer& IndTo)
{
Standard_Integer nbpoints = Spt.Length();
if (FromInd >= nbpoints) {
return Standard_False;
}
Standard_Real param,FMEPS;
Standard_Integer i,ifirst;
if (FromInd >= 1) {
FMEPS = Spt(FromInd).Parameter() - Tol;
for (ifirst=FromInd+1; ifirst<=nbpoints; ifirst++) {
if (Spt(ifirst).Parameter() >= FMEPS) {
break;
}
}
}
else {
ifirst = 1;
}
Standard_Boolean RetVal = Standard_False;
if (ifirst <= nbpoints) {
i = ifirst;
IndFrom = ifirst;
Standard_Boolean found = Standard_False;
while (!found) {
Or = Spt(i).Orientation();
param = Spt(i).Parameter();
i = i+1;
while (i<=nbpoints) {
if (Spt(i).Parameter()-param <= Tol) {
if (Or != TopAbs_EXTERNAL && Or != Spt(i).Orientation()) {
Or = TopAbs_EXTERNAL;
}
i++;
}
else {
break;
}
}
if (Or == TopAbs_EXTERNAL) {
found = (i > nbpoints);
IndFrom = i;
}
else { // on a une intersection franche
IndTo = i-1;
found = Standard_True;
RetVal = Standard_True;
}
}
}
return RetVal;
}
//=======================================================================
//function : AddPoints
//purpose :
//=======================================================================
static void AddPoints(IntCurvesFace_Intersector& theInt,
LocOpe_SequenceOfPntFace& theSeq,
const TopoDS_Face& theface)
{
Standard_Integer nbpoints = theSeq.Length();
Standard_Integer newpnt = theInt.NbPnt();
Standard_Real param,paramu,paramv;
for (Standard_Integer j = 1; j<=newpnt; j++) {
const gp_Pnt& thept = theInt.Pnt(j);
param = theInt.WParameter(j);
paramu = theInt.UParameter(j);
paramv = theInt.VParameter(j);
TopAbs_Orientation theor=TopAbs_FORWARD;
switch (theInt.Transition(j)) {
case IntCurveSurface_In:
/* JAG 13.09.96
if ( orface == TopAbs_FORWARD) {
theor = TopAbs_FORWARD;
}
else if (orface == TopAbs_REVERSED) {
theor = TopAbs_REVERSED;
}
else {
theor = TopAbs_EXTERNAL;
}
*/
theor = TopAbs_FORWARD;
break;
case IntCurveSurface_Out:
/* JAG 13.09.96
if ( orface == TopAbs_FORWARD) {
theor = TopAbs_REVERSED;
}
else if (orface == TopAbs_REVERSED) {
theor = TopAbs_FORWARD;
}
else {
theor = TopAbs_EXTERNAL;
}
*/
theor = TopAbs_REVERSED;
break;
case IntCurveSurface_Tangent:
theor = TopAbs_EXTERNAL;
break;
}
LocOpe_PntFace newpt(thept,theface,theor,param,paramu,paramv);
// for (Standard_Integer k=1; k <= nbpoints; k++) {
Standard_Integer k;
for ( k=1; k <= nbpoints; k++) {
if (theSeq(k).Parameter() - param > 0.) {
break;
}
}
if (k <= nbpoints) {
theSeq.InsertBefore(k,newpt);
}
else {
theSeq.Append(newpt);
}
nbpoints++;
}
}