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:
parent
55a0d816cd
commit
1e5dd88f50
@ -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();
|
||||
}
|
||||
|
17
tests/bugs/modalg_8/bug33367
Normal file
17
tests/bugs/modalg_8/bug33367
Normal 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
|
Loading…
x
Reference in New Issue
Block a user