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.
38 lines
904 B
Plaintext
38 lines
904 B
Plaintext
puts "Check History of General Fuse"
|
|
|
|
puts "Case with an edge intersecting a face"
|
|
|
|
polyline fw 0 0 0 10 0 0 10 10 0 0 10 0 0 0 0
|
|
mkplane fs fw
|
|
|
|
vertex ev1 5 5 5
|
|
vertex ev2 5 5 -5
|
|
edge es ev1 ev2
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects fs
|
|
baddtools es
|
|
bfillds
|
|
bbuild r
|
|
|
|
bmodified fs_m fs
|
|
checknbshapes fs_m -face 1 -m "Information about Modification of fs"
|
|
|
|
bmodified es_m es
|
|
checknbshapes es_m -edge 2 -m "Information about Modification of es"
|
|
|
|
bgenerated fs_g fs
|
|
checknbshapes fs_g -vertex 1 -m "Information about shapes Generated from fs"
|
|
|
|
bgenerated es_g es
|
|
checknbshapes es_g -vertex 1 -m "Information about shapes Generated from es"
|
|
|
|
|
|
# In General Fuse operation there should be no Deleted elements
|
|
foreach s [join [list es fs [explode es v] [explode fs e] [explode fs v]]] {
|
|
if {[string trim [bisdeleted $s]] != "Not deleted"} {
|
|
puts "Error: Incorrect information about Deleted shapes"
|
|
}
|
|
}
|