mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
168 lines
4.0 KiB
Plaintext
168 lines
4.0 KiB
Plaintext
puts "Check History of Cells Builder"
|
|
|
|
puts "Case with overlapping planar faces"
|
|
|
|
circle c1 0 0 0 10
|
|
circle c2 10 0 0 10
|
|
circle c3 10 10 0 10
|
|
|
|
mkedge e1 c1
|
|
mkedge e2 c2
|
|
mkedge e3 c3
|
|
|
|
wire w1 e1
|
|
wire w2 e2
|
|
wire w3 e3
|
|
|
|
mkplane f1 w1
|
|
mkplane f2 w2
|
|
mkplane f3 w3
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects f1 f2 f3
|
|
bfillds
|
|
|
|
bcbuild rx
|
|
|
|
bcremoveall
|
|
|
|
# no history at this point
|
|
|
|
# add to result all parts of f1 with material 1
|
|
bcadd result f1 1 -m 1
|
|
|
|
# check modification of f1
|
|
bmodified rm1 f1
|
|
checknbshapes rm1 -face 4 -m "Information about modification of f1"
|
|
|
|
# check modification of f2
|
|
bmodified rm2 f2
|
|
checknbshapes rm2 -face 2 -m "Information about modification of f2"
|
|
|
|
# check modification of f3
|
|
bmodified rm3 f3
|
|
checknbshapes rm3 -face 2 -m "Information about modification of f3"
|
|
|
|
# make one face from result
|
|
bcremoveint result
|
|
|
|
# check modification of f1
|
|
bmodified rm1u f1
|
|
checknbshapes rm1u -face 1 -m "Information about modification of f1"
|
|
|
|
# check modification of f2
|
|
bmodified rm2u f2
|
|
checknbshapes rm2u -face 1 -m "Information about modification of f2"
|
|
|
|
# check modification of f3
|
|
bmodified rm3u f3
|
|
checknbshapes rm3u -face 1 -m "Information about modification of f3"
|
|
|
|
compound rm1u rm2u rm3u cfu
|
|
checknbshapes cfu -face 1 -m "Information about modification of f1, f2 and f3"
|
|
|
|
|
|
bcremoveall
|
|
# no history at this point
|
|
|
|
# add to result all parts of f1 and f2 not contained in f3 with material 1
|
|
bcadd result f1 1 f3 0 -m 1
|
|
bcadd result f2 1 f3 0 -m 1
|
|
|
|
# check modification of f1
|
|
bmodified rm1 f1
|
|
checknbshapes rm1 -face 2 -m "Information about modification of f1"
|
|
|
|
# check modification of f2
|
|
bmodified rm2 f2
|
|
checknbshapes rm2 -face 2 -m "Information about modification of f2"
|
|
|
|
# check modification of f3
|
|
if {[string trim [bmodified rm3 f3]] != "The shape has not been modified"} {
|
|
puts "Error: Incorrect information about Modification of f3"
|
|
}
|
|
|
|
# check deletion of f1
|
|
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of f1"
|
|
}
|
|
|
|
# check deletion of f2
|
|
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of f2"
|
|
}
|
|
|
|
# check deletion of f3
|
|
if {[string trim [bisdeleted f3]] != "Deleted"} {
|
|
puts "Error: Incorrect information about Deletion of f3"
|
|
}
|
|
|
|
# make one face from result
|
|
bcremoveint result
|
|
|
|
# check modification of f1
|
|
bmodified rm1 f1
|
|
checknbshapes rm1 -face 1 -m "Information about modification of f1"
|
|
|
|
# check modification of f2
|
|
bmodified rm2 f2
|
|
checknbshapes rm2 -face 1 -m "Information about modification of f2"
|
|
|
|
# check modification of f3
|
|
if {[string trim [bmodified rm3 f3]] != "The shape has not been modified"} {
|
|
puts "Error: Incorrect information about Modification of f3"
|
|
}
|
|
|
|
# check deletion of f1
|
|
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of f1"
|
|
}
|
|
|
|
# check deletion of f2
|
|
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deletion of f2"
|
|
}
|
|
|
|
# check deletion of f3
|
|
if {[string trim [bisdeleted f3]] != "Deleted"} {
|
|
puts "Error: Incorrect information about Deletion of f3"
|
|
}
|
|
|
|
|
|
bcremoveall
|
|
|
|
# add to result parts of f1 with material 1, and all other parts with material 2
|
|
bcadd result f1 1 -m 1
|
|
bcadd result f2 1 f1 0 -m 2
|
|
bcadd result f3 1 f1 0 -m 2
|
|
|
|
# at this point all splits of faces are contained in the result
|
|
# check modification of f1
|
|
bmodified rm1 f1
|
|
checknbshapes rm1 -face 4 -m "Information about modification of f1"
|
|
|
|
# check modification of f2
|
|
bmodified rm2 f2
|
|
checknbshapes rm2 -face 4 -m "Information about modification of f2"
|
|
|
|
# check modification of f3
|
|
bmodified rm3 f3
|
|
checknbshapes rm3 -face 4 -m "Information about modification of f3"
|
|
|
|
# unify faces with same material
|
|
bcremoveint result
|
|
|
|
# check modification of f1
|
|
bmodified rm1u f1
|
|
checknbshapes rm1u -face 1 -m "Information about modification of f1"
|
|
|
|
# check modification of f2
|
|
bmodified rm2u f2
|
|
checknbshapes rm2u -face 2 -m "Information about modification of f2"
|
|
|
|
# check modification of f3
|
|
bmodified rm3u f3
|
|
checknbshapes rm3u -face 2 -m "Information about modification of f3"
|
|
|