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.
195 lines
4.8 KiB
Plaintext
195 lines
4.8 KiB
Plaintext
puts "Check History of Cells Builder"
|
|
|
|
puts "Case with three boxes"
|
|
|
|
box b1 10 10 10
|
|
box b2 5 0 0 10 10 10
|
|
box b3 2.5 0 5 10 10 10
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects b1 b2 b3
|
|
bfillds
|
|
|
|
bcbuild rx
|
|
|
|
bcremoveall
|
|
# no history at this point
|
|
|
|
# add all parts into result
|
|
bcaddall result
|
|
|
|
# get history
|
|
savehistory cells_hist
|
|
|
|
# find all section edges using Generated history information
|
|
compound ge
|
|
foreach s {b1 b2 b3} {
|
|
foreach f [explode $s f] {
|
|
if {[string trim [generated g cells_hist $f]] == ""} {
|
|
add g ge
|
|
}
|
|
}
|
|
}
|
|
|
|
checknbshapes ge -edge 4 -m "Information about Generated shapes"
|
|
|
|
|
|
bcremoveall
|
|
# no history at this point
|
|
|
|
# add to result all parts of b1 with material 1
|
|
bcadd result b1 1 -m 1
|
|
|
|
# update history
|
|
savehistory cells_hist
|
|
|
|
# check modification of b1
|
|
modified rm1 cells_hist b1
|
|
checknbshapes rm1 -solid 4 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
modified rm2 cells_hist b2
|
|
checknbshapes rm2 -solid 2 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
modified rm3 cells_hist b3
|
|
checknbshapes rm3 -solid 2 -m "Information about modification of b3"
|
|
|
|
# make one face from result
|
|
bcremoveint result
|
|
|
|
# update history
|
|
savehistory cells_hist
|
|
|
|
# check modification of b1
|
|
modified rm1u cells_hist b1
|
|
checknbshapes rm1u -solid 1 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
modified rm2u cells_hist b2
|
|
checknbshapes rm2u -solid 1 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
modified rm3u cells_hist b3
|
|
checknbshapes rm3u -solid 1 -m "Information about modification of b3"
|
|
|
|
compound rm1u rm2u rm3u cfu
|
|
checknbshapes cfu -solid 1 -m "Information about modification of b1, b2 and b3"
|
|
|
|
|
|
bcremoveall
|
|
# no history at this point
|
|
|
|
# add to result all parts of b1 and b2 not contained in b3 with material 1
|
|
bcadd result b1 1 b3 0 -m 1
|
|
bcadd result b2 1 b3 0 -m 1
|
|
|
|
# update history
|
|
savehistory cells_hist
|
|
|
|
# check modification of b1
|
|
modified rm1 cells_hist b1
|
|
checknbshapes rm1 -solid 2 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
modified rm2 cells_hist b2
|
|
checknbshapes rm2 -solid 2 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
if {[string trim [modified rm3 cells_hist b3]] != "The shape has not been modified."} {
|
|
puts "Error: Incorrect information about Modification of b3"
|
|
}
|
|
|
|
# check deletion of b1
|
|
if {[string trim [isdeleted cells_hist b1]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deletion of b1"
|
|
}
|
|
|
|
# check deletion of b2
|
|
if {[string trim [isdeleted cells_hist b2]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deletion of b2"
|
|
}
|
|
|
|
# check deletion of b3
|
|
if {[string trim [isdeleted cells_hist b3]] != "Deleted."} {
|
|
puts "Error: Incorrect information about Deletion of b3"
|
|
}
|
|
|
|
# make one face from result
|
|
bcremoveint result
|
|
|
|
# update history
|
|
savehistory cells_hist
|
|
|
|
# check modification of b1
|
|
modified rm1 cells_hist b1
|
|
checknbshapes rm1 -solid 1 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
modified rm2 cells_hist b2
|
|
checknbshapes rm2 -solid 1 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
if {[string trim [modified rm3 cells_hist b3]] != "The shape has not been modified."} {
|
|
puts "Error: Incorrect information about Modification of b3"
|
|
}
|
|
|
|
# check deletion of b1
|
|
if {[string trim [isdeleted cells_hist b1]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deletion of b1"
|
|
}
|
|
|
|
# check deletion of b2
|
|
if {[string trim [isdeleted cells_hist b2]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deletion of b2"
|
|
}
|
|
|
|
# check deletion of b3
|
|
if {[string trim [isdeleted cells_hist b3]] != "Deleted."} {
|
|
puts "Error: Incorrect information about Deletion of b3"
|
|
}
|
|
|
|
|
|
bcremoveall
|
|
|
|
# add to result parts of b1 with material 1, and all other parts with material 2
|
|
bcadd result b1 1 -m 1
|
|
bcadd result b2 1 b1 0 -m 2
|
|
bcadd result b3 1 b1 0 -m 2
|
|
|
|
# update history
|
|
savehistory cells_hist
|
|
|
|
# at this point all splits of faces are contained in the result
|
|
# check modification of b1
|
|
modified rm1 cells_hist b1
|
|
checknbshapes rm1 -solid 4 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
modified rm2 cells_hist b2
|
|
checknbshapes rm2 -solid 4 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
modified rm3 cells_hist b3
|
|
checknbshapes rm3 -solid 4 -m "Information about modification of b3"
|
|
|
|
# unify faces with same material
|
|
bcremoveint result
|
|
|
|
# update history
|
|
savehistory cells_hist
|
|
|
|
# check modification of b1
|
|
modified rm1u cells_hist b1
|
|
checknbshapes rm1u -solid 1 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
modified rm2u cells_hist b2
|
|
checknbshapes rm2u -solid 2 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
modified rm3u cells_hist b3
|
|
checknbshapes rm3u -solid 2 -m "Information about modification of b3"
|
|
|