mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Implementation of the method for simplification of the result of Boolean Operation on the API level. The method BRepAlgoAPI_BuilderAlgo::SimplifyResult has been added, so the derived classes such as BooleanOpeation and Splitter can also use this method. The result shape simplification should be called after the operation is done. The simplification is performed by the means of ShapeUpgrade_UnifySameDomain algorithm. Draw command "bsimplify" has been added to control the simplification options. Documentation for new functionality and draw commands controlling the options of Boolean operations. Test cases for the new functionality. Side-effect change: The algorithms in Boolean component have been changed to use the BRepTools_History as a History tool. Now it became possible to disable the collection of shapes modifications during Boolean Operations, which may be useful for performance sake (in draw the option is controlled by *setfillhistory* command). Draw command "unifysamedom" has been changed to accept the angular tolerance in degrees instead of radians.
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
puts "========"
|
|
puts "OCC28207"
|
|
puts "========"
|
|
puts ""
|
|
#########################################################
|
|
## Unexpected result of the unify same domain algorithm
|
|
#########################################################
|
|
|
|
restore [locate_data_file bug28207_face.brep] s1
|
|
|
|
unifysamedom result1 s1
|
|
checkshape result1
|
|
checknbshapes result1 -face 1 -wire 1 -edge 984
|
|
checkprops result1 -l 10402.1
|
|
|
|
#safeInputMode is true for USD
|
|
unifysamedom result2 s1 -a 0.06
|
|
checkshape result2
|
|
checknbshapes result2 -face 1 -wire 1 -edge 983
|
|
checkprops result2 -l 10402.1
|
|
|
|
unifysamedom result3 s1 -a 57
|
|
checkshape result3
|
|
checknbshapes result3 -face 1 -wire 1 -edge 983
|
|
checkprops result3 -l 10402.1
|
|
|
|
unifysamedom result4 s1 -t 0.01 -a 5.7
|
|
checkshape result4
|
|
checknbshapes result4 -face 1 -wire 1 -edge 510
|
|
checkprops result4 -l 10402.1
|
|
|
|
unifysamedom result5 s1 -t 0.1 -a 5.7
|
|
checkshape result5
|
|
checknbshapes result5 -face 1 -wire 1 -edge 198
|
|
checkprops result5 -l 10402.1
|
|
|
|
unifysamedom result6 s1 -t 1.0 -a 5.7
|
|
checkshape result6
|
|
checknbshapes result6 -face 1 -wire 1 -edge 65
|
|
checkprops result6 -l 10401.9
|
|
|
|
checkview -display result1 -2d -path ${imagedir}/${test_image}.png |