mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
174 lines
4.2 KiB
Plaintext
174 lines
4.2 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
|
|
|
|
# find all section edges using Generated history information
|
|
compound ge
|
|
foreach s {b1 b2 b3} {
|
|
foreach f [explode $s f] {
|
|
if {[string trim [bgenerated g $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
|
|
|
|
# check modification of b1
|
|
bmodified rm1 b1
|
|
checknbshapes rm1 -solid 4 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
bmodified rm2 b2
|
|
checknbshapes rm2 -solid 2 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
bmodified rm3 b3
|
|
checknbshapes rm3 -solid 2 -m "Information about modification of b3"
|
|
|
|
# make one face from result
|
|
bcremoveint result
|
|
|
|
# check modification of b1
|
|
bmodified rm1u b1
|
|
checknbshapes rm1u -solid 1 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
bmodified rm2u b2
|
|
checknbshapes rm2u -solid 1 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
bmodified rm3u 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
|
|
|
|
# check modification of b1
|
|
bmodified rm1 b1
|
|
checknbshapes rm1 -solid 2 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
bmodified rm2 b2
|
|
checknbshapes rm2 -solid 2 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
if {[string trim [bmodified rm3 b3]] != "The shape has not been modified"} {
|
|
puts "Error: Incorrect information about Modification of b3"
|
|
}
|
|
|
|
# check deletion of b1
|
|
if {[string trim [bisdeleted b1]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of b1"
|
|
}
|
|
|
|
# check deletion of b2
|
|
if {[string trim [bisdeleted b2]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of b2"
|
|
}
|
|
|
|
# check deletion of b3
|
|
if {[string trim [bisdeleted b3]] != "Deleted"} {
|
|
puts "Error: Incorrect information about Deletion of b3"
|
|
}
|
|
|
|
# make one face from result
|
|
bcremoveint result
|
|
|
|
# check modification of b1
|
|
bmodified rm1 b1
|
|
checknbshapes rm1 -solid 1 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
bmodified rm2 b2
|
|
checknbshapes rm2 -solid 1 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
if {[string trim [bmodified rm3 b3]] != "The shape has not been modified"} {
|
|
puts "Error: Incorrect information about Modification of b3"
|
|
}
|
|
|
|
# check deletion of b1
|
|
if {[string trim [bisdeleted b1]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of b1"
|
|
}
|
|
|
|
# check deletion of b2
|
|
if {[string trim [bisdeleted b2]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of b2"
|
|
}
|
|
|
|
# check deletion of b3
|
|
if {[string trim [bisdeleted 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
|
|
|
|
# at this point all splits of faces are contained in the result
|
|
# check modification of b1
|
|
bmodified rm1 b1
|
|
checknbshapes rm1 -solid 4 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
bmodified rm2 b2
|
|
checknbshapes rm2 -solid 4 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
bmodified rm3 b3
|
|
checknbshapes rm3 -solid 4 -m "Information about modification of b3"
|
|
|
|
# unify faces with same material
|
|
bcremoveint result
|
|
|
|
# check modification of b1
|
|
bmodified rm1u b1
|
|
checknbshapes rm1u -solid 1 -m "Information about modification of b1"
|
|
|
|
# check modification of b2
|
|
bmodified rm2u b2
|
|
checknbshapes rm2u -solid 2 -m "Information about modification of b2"
|
|
|
|
# check modification of b3
|
|
bmodified rm3u b3
|
|
checknbshapes rm3u -solid 2 -m "Information about modification of b3"
|
|
|