1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0033367: Modeling Algorithms - Normal projection or BOP problem [Regression]

Fixed passing of an incorrect curve into GeomAdaptor::MakeCurve() function.
This commit is contained in:
astromko 2024-03-12 13:39:19 +00:00 committed by jfa
parent 55a0d816cd
commit 1e5dd88f50
2 changed files with 19 additions and 2 deletions

View File

@ -333,7 +333,7 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
Only2d = Standard_True;
if(Only2d && Only3d) {
BRepLib_MakeEdge MKed(GeomAdaptor::MakeCurve(hcur->Curve()),
BRepLib_MakeEdge MKed(GeomAdaptor::MakeCurve(*hcur),
Udeb, Ufin);
prj = MKed.Edge();
BB.UpdateEdge(TopoDS::Edge(prj),
@ -369,7 +369,7 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
if(!Only3d) PCur2d = appr.Curve2d();
if(Only2d) {
BRepLib_MakeEdge MKed(GeomAdaptor::MakeCurve(hcur->Curve()),
BRepLib_MakeEdge MKed(GeomAdaptor::MakeCurve(*hcur),
Udeb, Ufin);
prj = MKed.Edge();
}

View File

@ -0,0 +1,17 @@
puts "==============================================================="
puts "0033367: Modeling Algorithms - Normal projection or BOP problem"
puts "==============================================================="
puts ""
pload MODELING
restore [locate_data_file bug33367_1.brep] sou
restore [locate_data_file bug33367_2.brep] des
checkshape sou
checkshape des
nproject prj sou des
checknbshapes prj -vertex 2 -edge 2 -compound 1 -shape 5
baddobjects des
baddtools prj
bfillds
bbuild res
checkshape res