mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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*.
31 lines
879 B
Plaintext
31 lines
879 B
Plaintext
pload XDE
|
|
|
|
stepread [locate_data_file bug29481_L3.step] s *
|
|
|
|
copy s_1 s
|
|
explode s f
|
|
|
|
compound s_20 feature1
|
|
compound s_16 feature2
|
|
compound s_17 s_18 s_19 feature3
|
|
compound feature1 feature2 feature3 gap
|
|
|
|
removefeatures res1 s feature1 feature2
|
|
checkshape res1
|
|
checkprops res1 -s 2387.88 -v 1060.71 -deps 1.e-7
|
|
checknbshapes res1 -vertex 68 -edge 102 -wire 36 -face 36 -shell 1 -solid 1
|
|
CheckIsFeatureRemoved feature1 {v e f}
|
|
CheckIsFeatureRemoved feature2 {v e f}
|
|
|
|
removefeatures res2 s feature3
|
|
checkshape res2
|
|
checkprops res2 -s 2391.13 -v 1064.08 -deps 1.e-7
|
|
checknbshapes res2 -vertex 66 -edge 99 -wire 35 -face 35 -shell 1 -solid 1
|
|
CheckIsFeatureRemoved feature3 {v e f}
|
|
|
|
removefeatures res3 s gap
|
|
checkshape res3
|
|
checkprops res3 -s 2392.93 -v 1065.38 -deps 1.e-7
|
|
checknbshapes res3 -vertex 60 -edge 90 -wire 32 -face 32 -shell 1 -solid 1
|
|
CheckIsFeatureRemoved gap {v e f}
|