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.
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
restore [locate_data_file bug29481_boxes.brep] s
|
|
explode s f
|
|
|
|
# remove the hole inside compsolid
|
|
|
|
compound s_30 s_31 s_32 s_60 s_39 s_54 s_48 s_58 s_7 s_12 s_46 s_25 s_21 s_40 s_9 s_38 s_45 s_13 s_59 s_8 s_22 s_51 s_52 s_18 hole
|
|
removefeatures result s hole
|
|
checkshape result
|
|
checkprops result -s 4800 -v 8000
|
|
checknbshapes result -vertex 27 -edge 54 -wire 36 -face 36 -shell 8 -solid 8
|
|
CheckIsFeatureRemoved hole {v e f}
|
|
|
|
# check that the shape is still a compsolid
|
|
if {![regexp "COMPSOLID" [whatis result]]} {
|
|
puts "Error: the type of input shape is lost during feature removal"
|
|
}
|
|
|
|
# check that the sharing is kept
|
|
if {![regexp "OK" [bopcheck result]]} {
|
|
puts "Error: sharing is lost after feature removal"
|
|
}
|
|
|
|
# get history of the operation
|
|
savehistory rf_hist
|
|
|
|
# check modification of the solids
|
|
foreach solid [explode s so] {
|
|
modified msol rf_hist $solid
|
|
checkprops msol -s 600 -v 1000
|
|
checknbshapes msol -vertex 8 -edge 12 -wire 6 -face 6 -shell 1 -solid 1 -t
|
|
|
|
bcommon com msol $solid
|
|
checkprops com -equal $solid
|
|
}
|