mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
GeomInt/GeomInt_IntSS.cxx, IntTools/IntTools_FaceFace.cxx - setting deflection 0.01 for case of two bspline surfaces IntPolyh/IntPolyh_Intersection.cxx, IntPolyh/IntPolyh_Intersection.hxx - status IsParallel is added BndLib/BndLib_Add3dCurve.cxx, IntTools/IntTools_TopolTool.cxx - fix small bugs Correction of test scripts according to current behavior of algorithms lowalgos/intss/bug32849 - test case added
30 lines
652 B
Plaintext
30 lines
652 B
Plaintext
puts "========"
|
|
puts "0025952: Wrong intersection curve"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload QAcommands
|
|
puts "TODO OCC25952 ALL: Error: The curve c_1 is possible to have a bend at"
|
|
|
|
restore [locate_data_file bug25952_shape.brep] q
|
|
explode q
|
|
copy q_1 b1
|
|
copy q_2 b2
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} [bopcurves b1 b2 -2d] full Toler NbCurv
|
|
|
|
checkreal Tolerance $Toler 1.0e-7 1.0e-7 0.0
|
|
if {$NbCurv != 1} {
|
|
puts "Error: Please check NbCurves for intersector"
|
|
} else {
|
|
checklength c_1 -l 0.00068663591416249451
|
|
QACheckBends c_1
|
|
}
|
|
|
|
smallview
|
|
don c_*
|
|
fit
|
|
disp b1 b2
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|