mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Correct processing faces that can be converted into planar ones. 2. Correct processing faces based on V-closed surfaces.
18 lines
542 B
Plaintext
18 lines
542 B
Plaintext
puts "=================================================================================="
|
|
puts "OCC31736: ShapeUpgrade_UnifySameDomain algorithm does not unify all possible faces"
|
|
puts "=================================================================================="
|
|
puts ""
|
|
|
|
restore [locate_data_file bug31736_1.brep] a
|
|
unifysamedom result a
|
|
|
|
checkshape result
|
|
|
|
checknbshapes result -vertex 18 -edge 26 -wire 9 -face 9 -shell 1 -solid 1
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 0.5} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|