mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
41 lines
987 B
Plaintext
41 lines
987 B
Plaintext
restore [locate_data_file bug29481_ex1.brep] s
|
|
explode s f
|
|
|
|
removefeatures result s s_4
|
|
checkshape result
|
|
checkprops result -s 462.815 -v 195.248 -deps 1.e-7
|
|
checknbshapes result -vertex 31 -edge 50 -wire 23 -face 20 -shell 1 -solid 1
|
|
CheckIsFeatureRemoved s_4 {v e f}
|
|
|
|
# get history of the operation
|
|
savehistory rf_hist
|
|
|
|
# check modification of the top face
|
|
modified m1 rf_hist s_1
|
|
checkprops m1 -s 169.122
|
|
checknbshapes m1 -vertex 12 -edge 12 -wire 3 -face 1
|
|
|
|
# check modification of the side faces
|
|
modified m3 rf_hist s_3
|
|
modified m5 rf_hist s_5
|
|
|
|
if {![regexp "same shapes" [compare m3 m5]]} {
|
|
puts "Error: incorrect feature removal"
|
|
}
|
|
|
|
checkprops m3 -s 9.75
|
|
checknbshapes m3 -vertex 6 -edge 6 -wire 1 -face 1
|
|
|
|
explode s_3 e
|
|
explode s_5 e
|
|
modified m3_4 rf_hist s_3_4
|
|
modified m5_2 rf_hist s_5_2
|
|
|
|
if {![regexp "same shapes" [compare m3_4 m5_2]]} {
|
|
puts "Error: incorrect feature removal"
|
|
}
|
|
|
|
checkprops m3_4 -l 9.5
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|