mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Check of the gap between ends of the p-curves having common vertex in the parametric space of face similar as in the class BRepCheck_Wire was added. Check that face lies on the periodic surface was added. Added check between ends of 2D curves in the 3D space and vertex the same which used in the BRepCheck_Wire::SelfIntersect Test case for issue CR28094 has been created.
31 lines
756 B
Plaintext
31 lines
756 B
Plaintext
puts "============"
|
|
puts "OCC28094"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# Shape obtained after DRAW command "splitshape" has unnecessary high tolerance.
|
|
######################################################
|
|
|
|
smallview
|
|
|
|
set expected_MaxTolerance 2.e-07
|
|
set tol_abs_MaxTolerance 1.e-06
|
|
set tol_rel_MaxTolerance 1.e-06
|
|
|
|
psphere a 10
|
|
plane p2 2 0 0 1 0 0
|
|
mkface f2 p2 -100 100 -100 100
|
|
bsection s2 a f2
|
|
explode a f
|
|
explode s2 e
|
|
splitshape res a_1 a_1 s2_1 a_1 s2_2
|
|
|
|
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance res] full MaxTolerance
|
|
checkreal "MaxTolerance" ${MaxTolerance} ${expected_MaxTolerance} ${tol_abs_MaxTolerance} ${tol_rel_MaxTolerance}
|
|
|
|
clear
|
|
donly res
|
|
fit
|
|
|
|
xwd ${imagedir}/${test_image}.png
|