1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
emv 803a8cafe5 0029363: No history for shapes which were produced as a result of intersection
1. Implementation of the *Generated* method for the algorithms in Boolean Component.
In terms of these algorithms the shape from the arguments can have Generated shapes only if these new shapes have been obtained as a result of pure intersection (not overlapping) of this shape with any other shapes from arguments.
Thus, the Generated shapes are always:
* VERTICES created from the intersection points and may be Generated from edges and faces only;
* EDGES created from the intersection edges and may be Generated from faces only.

So, only EDGES and FACES could have information about Generated shapes. For all other types of shapes the list of Generated shapes will be empty.

2. Optimization and simplification of the Modified and IsDeleted methods based on the correct filling of the BOPAlgo_BuilderShape::myImagesResult map.

3. Provide history of unification of the solids in the CellsBuilder algorithm.

4. Update of the documentation of Boolean Operations User guide with new chapter "History Information" describing rules for filling history for operations in Boolean Component.

5. Test cases for the issue. New grid "history" has been added into "boolean" category.
2017-12-20 18:50:21 +03:00

164 lines
4.6 KiB
Plaintext

puts "Check History of Boolean operations"
puts "Case with intersecting planes (two intersection edges)"
plane p 0 0 0 0 0 1
mkface f1 p -10 10 -10 10
polyline p -5 0 -5 -5 0 10 5 0 10 5 0 -5 2 0 -5 2 0 5 -2 0 5 -2 0 -5 -5 0 -5
mkplane f2 p
bclearobjects
bcleartools
baddobjects f1
baddtools f2
bfillds
puts "Common operation"
bbop rcom 0
# check that both f1 and f2 have been deleted
if {[string trim [bisdeleted f1]] != "Deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
if {[string trim [bisdeleted f2]] != "Deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
# check that none of the f1 and f2 have been Modified
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
puts "Error: Incorrect information about Modified shapes"
}
if {[string trim [bmodified rm 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 [bgenerated rg f1]] != "No shapes were generated from the shape"} {
puts "Error: Incorrect information about Generated shapes"
}
if {[string trim [bgenerated rg f2]] != "No shapes were generated from the shape"} {
puts "Error: Incorrect information about Generated shapes"
}
puts "Fuse operation"
bbop rfuse 1
# check that both f1 and f2 have not been deleted
if {[string trim [bisdeleted f1]] != "Not deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
if {[string trim [bisdeleted f2]] != "Not deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
# check that both f1 and f2 have been Modified
bmodified rm f1
checknbshapes rm -face 1 -m "Information about modification of f1"
bmodified rm f2
checknbshapes rm -face 3 -m "Information about modification of f2"
# check that both f1 and f2 have Generated edges
bgenerated rg f1
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
bgenerated rg f1
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"
puts "CUT operation"
bbop rcut 2
# check that f1 has not been deleted
if {[string trim [bisdeleted f1]] != "Not deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
# check that f2 has been deleted
if {[string trim [bisdeleted f2]] != "Deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
# check that f1 has been modified
bmodified rm f1
checknbshapes rm -face 1 -m "Information about modification of f1"
# check that f2 has not been modified
if {[string trim [bmodified rm f2]] != "The shape has not been modified"} {
puts "Error: Incorrect information about Modified shapes"
}
# check that both f1 and f2 have Generated edges
bgenerated rg f1
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
bgenerated rg f2
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"
puts "TUC operation"
bbop rtuc 3
# check that f1 has been deleted
if {[string trim [bisdeleted f1]] != "Deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
# check that f2 has not been deleted
if {[string trim [bisdeleted f2]] != "Not deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
# check that f1 has not been modified
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
puts "Error: Incorrect information about Modified shapes"
}
# check that f2 has been modified
bmodified rm f2
checknbshapes rm -face 3 -m "Information about modification of f1"
# check that both f1 and f2 have Generated vertices
bgenerated rg f1
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
bgenerated rg f2
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"
puts "SECTION operation"
bbop rsec 4
# check that both f1 and f2 have been deleted
if {[string trim [bisdeleted f1]] != "Deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
if {[string trim [bisdeleted f2]] != "Deleted"} {
puts "Error: Incorrect information about Deleted shapes"
}
# check that none of the f1 and f2 have been Modified
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
puts "Error: Incorrect information about Modified shapes"
}
if {[string trim [bmodified rm f2]] != "The shape has not been modified"} {
puts "Error: Incorrect information about Modified shapes"
}
# check that both f1 and f2 have Generated vertices
bgenerated rg f1
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
bgenerated rg f2
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"