mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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
55 lines
1009 B
Plaintext
55 lines
1009 B
Plaintext
puts "========"
|
|
puts "0025952: Wrong intersection curve"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload QAcommands
|
|
puts "TODO OCC26510 ALL: Error: 1 curve is expected but 0 ones are found"
|
|
|
|
set aGoodNbCurves 1
|
|
|
|
restore [locate_data_file bug25952_shape.brep] q
|
|
explode q
|
|
copy q_1 b1
|
|
copy q_2 b2
|
|
|
|
mksurface s1 b1
|
|
mksurface s2 b2
|
|
|
|
intersect res s1 s2
|
|
|
|
set che [whatis res]
|
|
set ind [string first "3d curve" $che]
|
|
if {${ind} >= 0} {
|
|
#Only variable "res" exists
|
|
renamevar res res_1
|
|
}
|
|
|
|
set ic 1
|
|
set AllowRepeat 1
|
|
while { $AllowRepeat != 0 } {
|
|
set che [whatis res_$ic]
|
|
set ind [string first "3d curve" $che]
|
|
if {${ind} < 0} {
|
|
set AllowRepeat 0
|
|
} else {
|
|
lappend CurvesList res_$ic
|
|
QACheckBends res_$ic
|
|
incr ic
|
|
}
|
|
}
|
|
|
|
set ic [expr $ic - 1]
|
|
|
|
if { $ic != $aGoodNbCurves } {
|
|
puts "Error: $aGoodNbCurves curve is expected but $ic ones are found"
|
|
} else {
|
|
CheckIntersectionResult s1 s2 $CurvesList 100 2.0e-7 2.0e-7
|
|
}
|
|
|
|
smallview
|
|
don res_*
|
|
fit
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|