mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- New methods SetLinearTolerance and SetAngularTolerance have been added in the class ShapeUpgrade_UnifySameDomain. - The algorithm has been modified to consider these tolerances when checking if two faces are same domain. - The draw command unifysamedomain has been changed to accept new parameters. - The internal method MergeSeq has been changed to avoid exception connected with access to unknown key in the data map. Create test case Small correction of test case for issue CR27729
18 lines
555 B
Plaintext
18 lines
555 B
Plaintext
puts "========"
|
|
puts "OCC27729"
|
|
puts "========"
|
|
puts ""
|
|
#######################################################################
|
|
# UnifySameDomain: allow the user to specify linear and angular tolerances
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug27729_a_1275.brep] a
|
|
|
|
unifysamedom r a -t 0.1 -a 0.08
|
|
|
|
regexp {FACE *: *(\d*)} [nbshapes r] full nbfaces
|
|
if {$nbfaces > 1000} {
|
|
puts "Error: number of faces in the result is too large"
|
|
}
|
|
|
|
checkview -display r -2d -path ${imagedir}/${test_image}.png |