1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
emv d9ca2e0cb1 0029481: Implementation of the Feature Removal algorithm
Implementation of the 3D model De-featuring algorithm intended for the removal of the unwanted parts (or features) from the model consisting of solids. The features can be the holes, protrusions, gaps, chamfers, fillets etc.
The algorithm removes all possible requested features from the shape and builds the new shape as a result. The input model is not modified.

On the API level the algorithm is implemented in the class *BRepAlgoAPI_Defeaturing*. The actual features removal is performed by the low-level algorithm *BOPAlgo_RemoveFeatures*.

Documentation of the new classes.
Implementation of the DRAW commands for working with new algorithm.
Test cases for the new functionality.

Changes in other algorithms used by De-featuring algorithm:
- Provide history support for the solids in *ShapeUpgrade_UnifySameDomain* algorithm;
- Implementation of the mechanism to merge History of any Algorithm with standard history methods such as IsDeleted(), Modified() and Generated() into *BRepTools_History*.
2018-03-16 14:56:36 +03:00

48 lines
1.1 KiB
Plaintext

restore [locate_data_file bug29481_ex3.brep] s
explode s f
# remove the gaps in each solid
compound s_7 s_8 s_9 gap1
compound s_11 s_12 s_17 gap2
removefeatures res1 s gap1
checkshape res1
checkprops res1 -s 1200 -v 1875
checknbshapes res1 -vertex 21 -edge 35 -wire 17 -face 17 -shell 2 -solid 2
CheckIsFeatureRemoved gap1 {e f}
# check that the common face is still shared
if {![regexp "OK" [bopcheck res1]]} {
puts "Error: sharing is lost after removal"
}
# check modification of the common face
rfmodified m6 s_6
checkprops m6 -s 100
# check modification of the solid 1
explode s
rfmodified m1 s_1
checkprops m1 -s 600 -v 1000
removefeatures res2 s gap2
checkshape res2
checkprops res2 -s 1200 -v 1875
checknbshapes res2 -vertex 21 -edge 35 -wire 17 -face 17 -shell 2 -solid 2
CheckIsFeatureRemoved gap2 {e f}
# check that the common face is still shared
if {![regexp "OK" [bopcheck res2]]} {
puts "Error: sharing is lost after removal"
}
# check modification of the common face
rfmodified m6 s_6
checkprops m6 -s 100
# check modification of the solid 1
explode s
rfmodified m2 s_2
checkprops m2 -s 600 -v 1000