mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Correct unification of circular edges: avoid trying to make an axis with null magnitude. 2. New method UnionPCurves: unify existing pcurves of chain instead of projecting the curve of unified edge onto surfaces
19 lines
485 B
Plaintext
19 lines
485 B
Plaintext
puts "=============================================================="
|
|
puts "OCC32140: unify same domain calls crossed for opposite vectors"
|
|
puts "=============================================================="
|
|
puts ""
|
|
|
|
restore [locate_data_file bug32140.brep] a
|
|
|
|
unifysamedom result a
|
|
|
|
checkshape result
|
|
|
|
checknbshapes result -solid 1 -shell 1 -face 26 -wire 32 -edge 69 -vertex 41
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 6.e-6} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|