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
602 B
Plaintext
22 lines
602 B
Plaintext
puts "======================================================================"
|
|
puts "OCC31735: BRepOffset_MakeOffset works slowly and produces wrong result"
|
|
puts "======================================================================"
|
|
puts ""
|
|
|
|
restore [locate_data_file bug31735_1.brep] a
|
|
explode a
|
|
thickshell result a_1 0.02 i
|
|
|
|
checkshape result
|
|
|
|
checknbshapes result -t -wire 56 -face 56 -shell 2 -solid 1
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 0.001001} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|
|
puts "TEST COMPLETED" |