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.
25 lines
429 B
Plaintext
25 lines
429 B
Plaintext
# Fuse of two boxes
|
|
|
|
boptions -default
|
|
|
|
box b1 10 10 15
|
|
box b2 3 7 0 10 10 15
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects b1
|
|
baddtools b2
|
|
bfillds
|
|
|
|
# build not simplified result
|
|
bapibop res 1
|
|
checkshape res
|
|
checknbshapes res -vertex 20 -edge 32 -wire 14 -face 14
|
|
|
|
# set option to simplify result
|
|
bsimplify -f 1
|
|
bapibop res_simple 1
|
|
checkshape res_simple
|
|
checknbshapes res_simple -vertex 16 -edge 24 -wire 10 -face 10
|
|
|
|
boptions -default
|