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.
86 lines
2.3 KiB
Plaintext
86 lines
2.3 KiB
Plaintext
if {[isdraw result]} {
|
|
# check history information
|
|
|
|
# get resulting edges
|
|
eval compound [explode result v] res_verts
|
|
eval compound [explode result e] res_edges
|
|
|
|
# get all vertices and edges of the input shape
|
|
eval compound [explode a v] input_verts
|
|
eval compound [explode a e] input_edges
|
|
|
|
# get usd history
|
|
savehistory usd_hist
|
|
|
|
# check deleted
|
|
|
|
# get removed vertices through the history
|
|
compound rem_verts
|
|
foreach v [explode input_verts] {
|
|
if {[regexp "Deleted." [isdeleted usd_hist $v]]} {
|
|
add $v rem_verts;
|
|
}
|
|
}
|
|
|
|
# get removed edges through the history
|
|
compound rem_edges
|
|
foreach e [explode input_edges] {
|
|
if {[regexp "Deleted." [isdeleted usd_hist $e]]} {
|
|
add $e rem_edges;
|
|
}
|
|
}
|
|
|
|
# check that all removed shapes are not present in the result
|
|
bsection sec_v res_verts rem_verts
|
|
if {[llength [explode sec_v v]]} {
|
|
puts "Error: the history of the removed vertices is incorrect."
|
|
}
|
|
|
|
bsection sec_e res_edges rem_edges
|
|
if {[llength [explode sec_e e]]} {
|
|
puts "Error: the history of the removed edges is incorrect."
|
|
}
|
|
|
|
# faces should not be removed at all
|
|
foreach f [explode a f] {
|
|
if {[regexp "Deleted." [isdeleted usd_hist $f]]} {
|
|
puts "Error: the faces should not be removed during unification."
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
# check modifications
|
|
|
|
# get all modified and not removed shapes into compound and
|
|
# compare the contents of the compound with the result shape
|
|
eval compound [explode a f] input_faces
|
|
|
|
compound all_hist_shapes
|
|
foreach comp {input_verts input_edges input_faces} {
|
|
foreach s [explode $comp] {
|
|
if {[regexp "Deleted." [isdeleted usd_hist $s]]} {
|
|
continue;
|
|
}
|
|
if {[regexp "The shape has not been modified." [modified s_mod usd_hist $s]]} {
|
|
add $s all_hist_shapes;
|
|
continue;
|
|
}
|
|
|
|
if {[regexp "COMPOUND" [whatis s_mod]]} {
|
|
foreach sm [explode s_mod] { add $sm all_hist_shapes }
|
|
} else {
|
|
add s_mod all_hist_shapes;
|
|
}
|
|
}
|
|
}
|
|
|
|
eval compound [explode result f] res_faces
|
|
compound all_res_shapes
|
|
foreach comp {res_verts res_edges res_faces} {
|
|
foreach s [explode $comp] { add $s all_res_shapes }
|
|
}
|
|
|
|
checknbshapes all_hist_shapes -ref [nbshapes all_res_shapes]
|
|
checkprops all_hist_shapes -s [lindex [sprops result -skip] 2] -l [lindex [lprops result -skip] 2] -skip
|
|
} |