mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Modify method IsPlanar of BRepOffset_MakeOffset: try to make planar all possible faces to simplify the input shape.
22 lines
597 B
Plaintext
22 lines
597 B
Plaintext
puts "======================================================================"
|
|
puts "OCC31735: BRepOffset_MakeOffset works slowly and produces wrong result"
|
|
puts "======================================================================"
|
|
puts ""
|
|
|
|
restore [locate_data_file bug31735_2.brep] a
|
|
explode a
|
|
thickshell result a_1 -0.1 i
|
|
|
|
checkshape result
|
|
|
|
checknbshapes result -t -wire 18 -face 18 -shell 2 -solid 1
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 0.5} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|
|
puts "TEST COMPLETED" |