1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0024313: BRepAlgoAPI_Section and IntTools_FaceFace aren't written to handle Geom_SurfaceOfLinearExtrusion

Test case for issue CR24313
This commit is contained in:
ifv 2013-12-05 15:16:11 +04:00 committed by bugmaster
parent 12c76beeb0
commit 94218044fe
2 changed files with 866 additions and 840 deletions

View File

@ -1332,7 +1332,6 @@ static Standard_Boolean isTreatAnalityc(const TopoDS_Face& theF1,
}
mySeqOfCurve.Append(aCurve);
} // end of if (!Precision::IsNegativeInfinite(fprm) && !Precision::IsPositiveInfinite(lprm))
else {
// on regarde si on garde
//
@ -1353,6 +1352,19 @@ static Standard_Boolean isTreatAnalityc(const TopoDS_Face& theF1,
gp_Pnt ptref(newc->Value(aTestPrm));
//
GeomAbs_SurfaceType typS1 = myHS1->GetType();
GeomAbs_SurfaceType typS2 = myHS2->GetType();
if( typS1 == GeomAbs_SurfaceOfExtrusion ||
typS1 == GeomAbs_OffsetSurface ||
typS1 == GeomAbs_SurfaceOfRevolution ||
typS2 == GeomAbs_SurfaceOfExtrusion ||
typS2 == GeomAbs_OffsetSurface ||
typS2 == GeomAbs_SurfaceOfRevolution)
{
Handle(Geom2d_BSplineCurve) H1;
mySeqOfCurve.Append(IntTools_Curve(newc, H1, H1));
continue;
}
Standard_Real u1, v1, u2, v2, Tol;

14
tests/bugs/modalg_5/bug24313 Executable file
View File

@ -0,0 +1,14 @@
puts "============"
puts "OCC24313"
puts "============"
puts ""
#######################################################################
# BRepAlgoAPI_Section and IntTools_FaceFace aren't written to handle Geom_SurfaceOfLinearExtrusion
#######################################################################
circle c 0 0 0 0 0 1 1 0 0 100
extsurf s1 c 0 0 1
plane s2 0 0 0 1 0 0 0 1 0
mkface b1 s1
mkface b2 s2
bopcurves b1 b2