mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Implementation of the mechanism for unification of the history commands for all OCCT algorithms. The following Draw commands should be used to track the history of shapes modifications of any operation: - modified - to find the shapes modified from the given shape in the given history. - generated - to find the shapes generated from the given shape in the given history. - isdeleted - to check if the given shape has been deleted during operation. The mechanism allows fast & easy enabling of the DRAW history support for the algorithms supporting the history on the API level (i.e. the algorithm should have the methods Modified(), Generated() and IsDeleted()). To enable the draw history support it is necessary to store the history of the algorithm into the session. For instance: TopTools_ListOfShape Objects = ...; // Objects TopTools_ListOfShape Tools = ...; // Tools BRepAlgoAPI_Cut aCut(Objects, Tools); // Boolean cut operation BRepTest_Objects::SetHistory(Objects, aCut); // Store the history for the Objects (overwrites the history in the session) BRepTest_Objects::AddHistory(Tools, aCut); // Add the history for the Tools To get the stored history in draw the command "savehistory" should be used. It saves the history kept in session into a Drawable object with the given name: # perform cut bcut r s1 s2 # save history of cut savehistory cut_history explode s1 f modified m cut_history s1_1 The Draw History commands of the following algorithms have been removed: - Boolean Operations; - Defeaturing; - Unify same domain; - Sweep; - Thrusections; All these algorithms have been switched to support the new Draw history mechanism. The Fillet and Blend algorithms have been also enabled to support history commands.
56 lines
1.5 KiB
Plaintext
56 lines
1.5 KiB
Plaintext
restore [locate_data_file bug28840_5.brep] s
|
|
explode s f
|
|
|
|
compound s_3 s_8 s_29 s_2 s_1 feature1
|
|
compound s_15 s_10 s_6 s_18 s_9 s_13 s_11 feature2
|
|
compound s_19 s_14 s_7 s_16 s_17 s_12 feature3
|
|
|
|
# remove first feature
|
|
removefeatures res1 s feature1
|
|
checkshape res1
|
|
checkprops res1 -s 19165.2 -v 142408 -deps 1.e-7
|
|
checknbshapes res1 -vertex 31 -edge 53 -wire 25 -face 24 -shell 1 -solid 1 -t
|
|
CheckIsFeatureRemoved feature1 {v e f}
|
|
|
|
# get history of the operation
|
|
savehistory rf_hist
|
|
|
|
# prepare for removal of the second feature
|
|
compound mfeature2
|
|
foreach f [explode feature2 f] {
|
|
if {[regexp "has not been modified" [modified fm rf_hist $f]]} {
|
|
add $f mfeature2
|
|
} else {
|
|
add fm mfeature2
|
|
}
|
|
}
|
|
|
|
# remove second feature
|
|
removefeatures res2 res1 mfeature2
|
|
checkshape res2
|
|
checkprops res2 -s 19396.1 -v 141748 -deps 1.e-7
|
|
checknbshapes res2 -vertex 24 -edge 39 -wire 18 -face 17 -shell 1 -solid 1 -t
|
|
CheckIsFeatureRemoved mfeature2 {v e f}
|
|
|
|
# get history of the operation
|
|
savehistory rf_hist2
|
|
|
|
# prepare for removal of the third feature
|
|
compound mfeature3
|
|
foreach f [explode feature3 f] {
|
|
if {[regexp "has not been modified" [modified fm rf_hist2 $f]]} {
|
|
add $f mfeature3
|
|
} else {
|
|
add fm mfeature3
|
|
}
|
|
}
|
|
|
|
# remove the third feature
|
|
removefeatures result res2 mfeature3
|
|
checkshape result
|
|
checkprops result -s 19692.7 -v 142463 -deps 1.e-7
|
|
checknbshapes result -vertex 16 -edge 24 -wire 12 -face 11 -shell 1 -solid 1 -t
|
|
CheckIsFeatureRemoved mfeature3 {v e f}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|