1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
emv 948fe6ca88 0028747: Incorrect result of the section operation after edge refinement
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.
2018-06-14 14:03:06 +03:00

42 lines
829 B
Plaintext

# Multiple cut of the plate by the rectangular tool
boptions -default
bsimplify -e 1 -f 1
box plate 100 20 20
explode plate e
mkcurve curve plate_10
set nbp 100
bounds curve t1 t2
set delta [dval ($t2-10-$t1)/$nbp]
for {set i 0} {$i < $nbp} {incr i} {
set t [dval $t1+[dval $delta*$i]]
cvalue curve $t x y z
# create tool
box tool x y z 10 10 10
# move it inside
ttranslate tool 0 0 -5
bclearobjects
bcleartools
baddobjects plate
baddtools tool
bfillds
bapibop plate 2
checkshape plate
# number of faces should be the same from operation to operation
checknbshapes plate -vertex 14 -edge 21 -wire 9 -face 9 -shell 1 -solid 1
}
# restore default values
boptions -default
checkshape plate
checkprops plate -s 8800 -v 35045
checkview -display plate -2d -path ${imagedir}/${test_image}_2.png