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.
186 lines
5.5 KiB
Plaintext
186 lines
5.5 KiB
Plaintext
puts "Check History of Boolean operations"
|
|
|
|
puts "Case with overlapping planar faces"
|
|
|
|
plane p 0 0 0 0 0 1
|
|
mkface f1 p -10 10 -10 10
|
|
mkface f2 p 0 20 -10 10
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects f1
|
|
baddtools f2
|
|
bfillds
|
|
|
|
puts "Common operation"
|
|
bbop rcom 0
|
|
|
|
# get history of the operation
|
|
savehistory com_hist
|
|
|
|
# check that both f1 and f2 have not been deleted
|
|
if {[string trim [isdeleted com_hist f1]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
if {[string trim [isdeleted com_hist f2]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
# check that both f1 and f2 have been Modified into the same face
|
|
modified rm1 com_hist f1
|
|
checknbshapes rm1 -face 1 -m "Information about modification of f1"
|
|
|
|
modified rm2 com_hist f2
|
|
checknbshapes rm2 -face 1 -m "Information about modification of f2"
|
|
|
|
compound rm1 rm2 cm
|
|
checknbshapes cm -face 1 -m "Information about modification of f1 and f2"
|
|
|
|
|
|
# check that none of the f1 and f2 have Generated shapes
|
|
if {[string trim [generated rg com_hist f1]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
if {[string trim [generated rg com_hist f2]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
|
|
puts "Fuse operation"
|
|
bbop rfuse 1
|
|
|
|
# get history of the operation
|
|
savehistory fuse_hist
|
|
|
|
# check that both f1 and f2 have not been deleted
|
|
if {[string trim [isdeleted fuse_hist f1]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
if {[string trim [isdeleted fuse_hist f2]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
# check that both f1 and f2 have been Modified
|
|
modified rm fuse_hist f1
|
|
checknbshapes rm -face 2 -m "Information about modification of f1"
|
|
|
|
modified rm fuse_hist f2
|
|
checknbshapes rm -face 2 -m "Information about modification of f2"
|
|
|
|
# check that none of the f1 and f2 have Generated shapes
|
|
if {[string trim [generated rg fuse_hist f1]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
if {[string trim [generated rg fuse_hist f2]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
|
|
puts "CUT operation"
|
|
bbop rcut 2
|
|
|
|
# get history of the operation
|
|
savehistory cut_hist
|
|
|
|
# check that f1 has not been deleted
|
|
if {[string trim [isdeleted cut_hist f1]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
# check that f2 has been deleted
|
|
if {[string trim [isdeleted cut_hist f2]] != "Deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
# check that f1 has been modified
|
|
modified rm cut_hist f1
|
|
checknbshapes rm -face 1 -m "Information about modification of f1"
|
|
|
|
# check that f2 has not been modified
|
|
if {[string trim [modified rm cut_hist f2]] != "The shape has not been modified."} {
|
|
puts "Error: Incorrect information about Modified shapes"
|
|
}
|
|
|
|
# check that none of the f1 and f2 have Generated shapes
|
|
if {[string trim [generated rg cut_hist f1]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
if {[string trim [generated rg cut_hist f2]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
|
|
puts "TUC operation"
|
|
bbop rtuc 3
|
|
|
|
# get history of the operation
|
|
savehistory tuc_hist
|
|
|
|
# check that f1 has been deleted
|
|
if {[string trim [isdeleted tuc_hist f1]] != "Deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
# check that f2 has not been deleted
|
|
if {[string trim [isdeleted tuc_hist f2]] != "Not deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
# check that f1 has not been modified
|
|
if {[string trim [modified rm tuc_hist f1]] != "The shape has not been modified."} {
|
|
puts "Error: Incorrect information about Modified shapes"
|
|
}
|
|
|
|
# check that f2 has been modified
|
|
modified rm tuc_hist f2
|
|
checknbshapes rm -face 1 -m "Information about modification of f1"
|
|
|
|
# check that none of the f1 and f2 have Generated shapes
|
|
if {[string trim [generated rg tuc_hist f1]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
if {[string trim [generated rg tuc_hist f2]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
|
|
|
|
puts "SECTION operation"
|
|
bbop rsec 4
|
|
|
|
# get history of the operation
|
|
savehistory sec_hist
|
|
|
|
# check that both f1 and f2 have been deleted
|
|
if {[string trim [isdeleted sec_hist f1]] != "Deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
if {[string trim [isdeleted sec_hist f2]] != "Deleted."} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
|
|
# check that none of the f1 and f2 have been Modified
|
|
if {[string trim [modified rm sec_hist f1]] != "The shape has not been modified."} {
|
|
puts "Error: Incorrect information about Modified shapes"
|
|
}
|
|
|
|
if {[string trim [modified rm sec_hist f2]] != "The shape has not been modified."} {
|
|
puts "Error: Incorrect information about Modified shapes"
|
|
}
|
|
|
|
# check that none of the f1 and f2 have Generated shapes
|
|
if {[string trim [generated rg sec_hist f1]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|
|
|
|
if {[string trim [generated rg sec_hist f2]] != "No shapes were generated from the shape."} {
|
|
puts "Error: Incorrect information about Generated shapes"
|
|
}
|