mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
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*.
25 lines
763 B
Plaintext
25 lines
763 B
Plaintext
restore [locate_data_file bug29481_ex1.brep] s
|
|
explode s f
|
|
|
|
# removal of the cylindrical spike on the shape
|
|
|
|
removefeatures result s s_15 s_21 s_22
|
|
checkshape result
|
|
checkprops result -s 449.707 -v 186.844 -deps 1.e-7
|
|
checknbshapes result -vertex 31 -edge 51 -wire 21 -face 19 -shell 1 -solid 1
|
|
CheckIsFeatureRemoved s_15 {v e f}
|
|
CheckIsFeatureRemoved s_21 {v e f}
|
|
CheckIsFeatureRemoved s_22 {v e f}
|
|
|
|
# check modification of the top face
|
|
rfmodified m1 s_1
|
|
checkprops m1 -s 175.593
|
|
checknbshapes m1 -vertex 13 -edge 13 -wire 2 -face 1
|
|
|
|
# check that no new intersections have been created
|
|
if {![regexp "No shapes were generated" [rfgenerated g1 s_1]]} {
|
|
puts "Error: incorrect feature removal"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|