mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0025248: Curve-Surface intersection algorithm raises exception
All necessary comments are into the program code. Test case for issue CR25248
This commit is contained in:
parent
d538d7a221
commit
b89b1e0816
@ -115,7 +115,10 @@ is Create returns Tool from Intf;
|
|||||||
fields nbSeg : Integer from Standard;
|
fields nbSeg : Integer from Standard;
|
||||||
beginOnCurve : Real from Standard [6];
|
beginOnCurve : Real from Standard [6];
|
||||||
endOnCurve : Real from Standard [6];
|
endOnCurve : Real from Standard [6];
|
||||||
|
|
||||||
|
-- Code of every side of BndBox.
|
||||||
bord : Integer from Standard [12];
|
bord : Integer from Standard [12];
|
||||||
|
|
||||||
xint : Real from Standard [12];
|
xint : Real from Standard [12];
|
||||||
yint : Real from Standard [12];
|
yint : Real from Standard [12];
|
||||||
zint : Real from Standard [12];
|
zint : Real from Standard [12];
|
||||||
|
@ -726,25 +726,6 @@ void Intf_Tool::HyprBox(const gp_Hypr& theHypr,
|
|||||||
}
|
}
|
||||||
boxHypr.Update(Xmin, Ymin, Zmin, Xmax, Ymax, Zmax);
|
boxHypr.Update(Xmin, Ymin, Zmin, Xmax, Ymax, Zmax);
|
||||||
//
|
//
|
||||||
Standard_Integer npj, npk;
|
|
||||||
Standard_Real parmin;
|
|
||||||
for (npi=0; npi<nbPi; npi++) {
|
|
||||||
npk=npi;
|
|
||||||
for (npj=npi+1; npj<nbPi; npj++) {
|
|
||||||
if (parint[npj]<parint[npk]) {
|
|
||||||
npk=npj;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (npk!=npi) {
|
|
||||||
parmin=parint[npk];
|
|
||||||
parint[npk]=parint[npi];
|
|
||||||
parint[npi]=parmin;
|
|
||||||
npj=bord[npk];
|
|
||||||
bord[npk]=bord[npi];
|
|
||||||
bord[npi]=npj;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//
|
|
||||||
gp_Pnt Pn;
|
gp_Pnt Pn;
|
||||||
gp_Vec Tan;
|
gp_Vec Tan;
|
||||||
Standard_Real sinan=0;
|
Standard_Real sinan=0;
|
||||||
@ -851,130 +832,178 @@ Standard_Integer Intf_Tool::Inters3d(const gp_Hypr& theCurv,
|
|||||||
|
|
||||||
if (!Domain.IsOpenXmin()) {
|
if (!Domain.IsOpenXmin()) {
|
||||||
IntAna_IntConicQuad Inters1(theCurv,
|
IntAna_IntConicQuad Inters1(theCurv,
|
||||||
gp_Pln(1., 0., 0., xmin),
|
gp_Pln(1., 0., 0., -xmin),
|
||||||
Precision::Angular());
|
Precision::Angular());
|
||||||
if (Inters1.IsDone()) {
|
if (Inters1.IsDone()) {
|
||||||
if (!Inters1.IsInQuadric()) {
|
if (!Inters1.IsInQuadric()) {
|
||||||
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
||||||
yint[nbpi]=Inters1.Point(npi).Y();
|
yint[nbpi]=Inters1.Point(npi).Y();
|
||||||
zint[nbpi]=Inters1.Point(npi).Z();
|
zint[nbpi]=Inters1.Point(npi).Z();
|
||||||
if (ymin <=yint[nbpi] && yint[nbpi] < ymax &&
|
if (ymin <=yint[nbpi] && yint[nbpi] < ymax &&
|
||||||
zmin <=zint[nbpi] && zint[nbpi] < zmax) {
|
zmin <=zint[nbpi] && zint[nbpi] < zmax) {
|
||||||
xint[nbpi]=xmin;
|
xint[nbpi]=xmin;
|
||||||
parint[nbpi]=Inters1.ParamOnConic(npi);
|
parint[nbpi]=Inters1.ParamOnConic(npi);
|
||||||
bord[nbpi]=1;
|
bord[nbpi]=1;
|
||||||
nbpi++;
|
nbpi++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Domain.IsOpenYmin()) {
|
if (!Domain.IsOpenYmin()) {
|
||||||
IntAna_IntConicQuad Inters1(theCurv,
|
IntAna_IntConicQuad Inters1(theCurv,
|
||||||
gp_Pln( 0., 1., 0., ymin),
|
gp_Pln( 0., 1., 0., -ymin),
|
||||||
Precision::Angular());
|
Precision::Angular());
|
||||||
if (Inters1.IsDone()) {
|
if (Inters1.IsDone()) {
|
||||||
if (!Inters1.IsInQuadric()) {
|
if (!Inters1.IsInQuadric()) {
|
||||||
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
||||||
xint[nbpi]=Inters1.Point(npi).X();
|
xint[nbpi]=Inters1.Point(npi).X();
|
||||||
zint[nbpi]=Inters1.Point(npi).Z();
|
zint[nbpi]=Inters1.Point(npi).Z();
|
||||||
if (xmin < xint[nbpi] && xint[nbpi] <=xmax &&
|
if (xmin < xint[nbpi] && xint[nbpi] <=xmax &&
|
||||||
zmin <=zint[nbpi] && zint[nbpi] < zmax) {
|
zmin <=zint[nbpi] && zint[nbpi] < zmax) {
|
||||||
yint[nbpi]=ymin;
|
yint[nbpi]=ymin;
|
||||||
parint[nbpi]=Inters1.ParamOnConic(npi);
|
parint[nbpi]=Inters1.ParamOnConic(npi);
|
||||||
bord[nbpi]=2;
|
bord[nbpi]=2;
|
||||||
nbpi++;
|
nbpi++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Domain.IsOpenZmin()) {
|
if (!Domain.IsOpenZmin()) {
|
||||||
IntAna_IntConicQuad Inters1(theCurv,
|
IntAna_IntConicQuad Inters1(theCurv,
|
||||||
gp_Pln( 0., 0., 1., zmin),
|
gp_Pln( 0., 0., 1., -zmin),
|
||||||
Precision::Angular());
|
Precision::Angular());
|
||||||
if (Inters1.IsDone()) {
|
if (Inters1.IsDone()) {
|
||||||
if (!Inters1.IsInQuadric()) {
|
if (!Inters1.IsInQuadric()) {
|
||||||
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
||||||
xint[nbpi]=Inters1.Point(npi).X();
|
xint[nbpi]=Inters1.Point(npi).X();
|
||||||
yint[nbpi]=Inters1.Point(npi).Y();
|
yint[nbpi]=Inters1.Point(npi).Y();
|
||||||
if (xmin < xint[nbpi] && xint[nbpi] <=xmax &&
|
if (xmin < xint[nbpi] && xint[nbpi] <=xmax &&
|
||||||
ymin < yint[nbpi] && yint[nbpi] <=ymax) {
|
ymin < yint[nbpi] && yint[nbpi] <=ymax) {
|
||||||
zint[nbpi]=zmin;
|
zint[nbpi]=zmin;
|
||||||
parint[nbpi]=Inters1.ParamOnConic(npi);
|
parint[nbpi]=Inters1.ParamOnConic(npi);
|
||||||
bord[nbpi]=3;
|
bord[nbpi]=3;
|
||||||
nbpi++;
|
nbpi++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Domain.IsOpenXmax()) {
|
if (!Domain.IsOpenXmax()) {
|
||||||
IntAna_IntConicQuad Inters1(theCurv,
|
IntAna_IntConicQuad Inters1(theCurv,
|
||||||
gp_Pln(-1., 0., 0., xmax),
|
gp_Pln(-1., 0., 0., xmax),
|
||||||
Precision::Angular());
|
Precision::Angular());
|
||||||
if (Inters1.IsDone()) {
|
if (Inters1.IsDone()) {
|
||||||
if (!Inters1.IsInQuadric()) {
|
if (!Inters1.IsInQuadric()) {
|
||||||
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
||||||
yint[nbpi]=Inters1.Point(npi).Y();
|
yint[nbpi]=Inters1.Point(npi).Y();
|
||||||
zint[nbpi]=Inters1.Point(npi).Z();
|
zint[nbpi]=Inters1.Point(npi).Z();
|
||||||
if (ymin < yint[nbpi] && yint[nbpi] <=ymax &&
|
if (ymin < yint[nbpi] && yint[nbpi] <=ymax &&
|
||||||
zmin < zint[nbpi] && zint[nbpi] <=zmax) {
|
zmin < zint[nbpi] && zint[nbpi] <=zmax) {
|
||||||
xint[nbpi]=xmax;
|
xint[nbpi]=xmax;
|
||||||
parint[nbpi]=Inters1.ParamOnConic(npi);
|
parint[nbpi]=Inters1.ParamOnConic(npi);
|
||||||
bord[nbpi]=4;
|
bord[nbpi]=4;
|
||||||
nbpi++;
|
nbpi++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Domain.IsOpenYmax()) {
|
if (!Domain.IsOpenYmax()) {
|
||||||
IntAna_IntConicQuad Inters1(theCurv,
|
IntAna_IntConicQuad Inters1(theCurv,
|
||||||
gp_Pln( 0.,-1., 0., ymax),
|
gp_Pln( 0.,-1., 0., ymax),
|
||||||
Precision::Angular());
|
Precision::Angular());
|
||||||
if (Inters1.IsDone()) {
|
if (Inters1.IsDone()) {
|
||||||
if (!Inters1.IsInQuadric()) {
|
if (!Inters1.IsInQuadric()) {
|
||||||
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
||||||
xint[nbpi]=Inters1.Point(npi).X();
|
xint[nbpi]=Inters1.Point(npi).X();
|
||||||
zint[nbpi]=Inters1.Point(npi).Z();
|
zint[nbpi]=Inters1.Point(npi).Z();
|
||||||
if (xmin <=xint[nbpi] && xint[nbpi] < xmax &&
|
if (xmin <=xint[nbpi] && xint[nbpi] < xmax &&
|
||||||
zmin < zint[nbpi] && zint[nbpi] <=zmax) {
|
zmin < zint[nbpi] && zint[nbpi] <=zmax) {
|
||||||
yint[nbpi]=ymax;
|
yint[nbpi]=ymax;
|
||||||
parint[nbpi]=Inters1.ParamOnConic(npi);
|
parint[nbpi]=Inters1.ParamOnConic(npi);
|
||||||
bord[nbpi]=5;
|
bord[nbpi]=5;
|
||||||
nbpi++;
|
nbpi++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Domain.IsOpenZmax()) {
|
if (!Domain.IsOpenZmax()) {
|
||||||
IntAna_IntConicQuad Inters1(theCurv,
|
IntAna_IntConicQuad Inters1(theCurv,
|
||||||
gp_Pln( 0., 0.,-1., zmax),
|
gp_Pln( 0., 0.,-1., zmax),
|
||||||
Precision::Angular());
|
Precision::Angular());
|
||||||
if (Inters1.IsDone()) {
|
if (Inters1.IsDone()) {
|
||||||
if (!Inters1.IsInQuadric()) {
|
if (!Inters1.IsInQuadric()) {
|
||||||
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
for (npi=1; npi<=Inters1.NbPoints(); npi++) {
|
||||||
xint[nbpi]=Inters1.Point(npi).X();
|
xint[nbpi]=Inters1.Point(npi).X();
|
||||||
yint[nbpi]=Inters1.Point(npi).Y();
|
yint[nbpi]=Inters1.Point(npi).Y();
|
||||||
if (xmin <=xint[nbpi] && xint[nbpi] < xmax &&
|
if (xmin <=xint[nbpi] && xint[nbpi] < xmax &&
|
||||||
ymin <=yint[nbpi] && yint[nbpi] < ymax) {
|
ymin <=yint[nbpi] && yint[nbpi] < ymax) {
|
||||||
zint[nbpi]=zmax;
|
zint[nbpi]=zmax;
|
||||||
parint[nbpi]=Inters1.ParamOnConic(npi);
|
parint[nbpi]=Inters1.ParamOnConic(npi);
|
||||||
bord[nbpi]=6;
|
bord[nbpi]=6;
|
||||||
nbpi++;
|
nbpi++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nbpi;
|
|
||||||
|
Standard_Integer aNbDiffPoints = nbpi;
|
||||||
|
|
||||||
|
//Sort parint and check if parint contains several
|
||||||
|
//matched values. If that is true they will be deleted.
|
||||||
|
for(Standard_Integer i = nbpi - 1; i > 0 ; i--)
|
||||||
|
{
|
||||||
|
for(Standard_Integer j = 0; j < i; j++)
|
||||||
|
{
|
||||||
|
if(parint[i] <= parint[j])
|
||||||
|
{
|
||||||
|
Standard_Real aTemp = parint[i];
|
||||||
|
parint[i] = parint[j];
|
||||||
|
parint[j] = aTemp;
|
||||||
|
|
||||||
|
aTemp = zint[i];
|
||||||
|
zint[i] = zint[j];
|
||||||
|
zint[j] = aTemp;
|
||||||
|
|
||||||
|
aTemp = yint[i];
|
||||||
|
yint[i] = yint[j];
|
||||||
|
yint[j] = aTemp;
|
||||||
|
|
||||||
|
aTemp = xint[i];
|
||||||
|
xint[i] = xint[j];
|
||||||
|
xint[j] = aTemp;
|
||||||
|
|
||||||
|
aTemp = bord[i];
|
||||||
|
bord[i] = bord[j];
|
||||||
|
bord[j] = RealToInt(aTemp);
|
||||||
|
}
|
||||||
|
|
||||||
|
if((i < nbpi - 1) && IsEqual(parint[i], parint[i+1]))
|
||||||
|
{
|
||||||
|
for(Standard_Integer k = i + 1; k < aNbDiffPoints; k++)
|
||||||
|
{
|
||||||
|
parint[k-1] = parint[k];
|
||||||
|
zint[k-1] = zint[k];
|
||||||
|
yint[k-1] = yint[k];
|
||||||
|
xint[k-1] = xint[k];
|
||||||
|
bord[k-1] = bord[k];
|
||||||
|
}
|
||||||
|
|
||||||
|
aNbDiffPoints--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return aNbDiffPoints;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
12
tests/bugs/modalg_5/bug25248
Executable file
12
tests/bugs/modalg_5/bug25248
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
puts "========="
|
||||||
|
puts "CR25248"
|
||||||
|
puts "========="
|
||||||
|
puts ""
|
||||||
|
###############################
|
||||||
|
## Curve-Surface intersection algorithm raises exception
|
||||||
|
###############################
|
||||||
|
|
||||||
|
restore [locate_data_file bug25248_c.draw] c
|
||||||
|
restore [locate_data_file bug25111_s2.draw] s
|
||||||
|
|
||||||
|
intersect i c s
|
Loading…
x
Reference in New Issue
Block a user