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*.
28 lines
587 B
Plaintext
28 lines
587 B
Plaintext
# prepare model
|
|
polyline p 0 0 0 10 0 0 10 0 5 5 0 5 0 0 0
|
|
mkplane f p
|
|
prism s f 0 5 0
|
|
pcylinder c 2 3
|
|
ttranslate c 7.5 2.5 2
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects s
|
|
baddtools c
|
|
bfillds
|
|
bbop model 2
|
|
|
|
# find face to remove - top face of the model
|
|
explode s f
|
|
bmodified feature s_3
|
|
|
|
# remove features
|
|
removefeatures result model feature
|
|
|
|
checkshape result
|
|
checkprops result -s 334.621 -v 180.885 -deps 1.e-7
|
|
checknbshapes result -vertex 8 -edge 12 -wire 8 -face 7 -shell 1 -solid 1 -t
|
|
CheckIsFeatureRemoved feature {e f}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|