mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Implementation of the new class *BOPAlgo_MakeConnected* for making the group of touching same-dimensional shapes connected. Provide the material association for the first sub-elements of the input shapes. Provide possibility to make the connected shape periodic. Draw commands for new algorithm: * makeconnected - make the input shapes connected or glued, performs material associations; * cmaterialson - returns the materials located on the requested side of a shape; * cmakeperiodic - makes the connected shape periodic in requested directions; * crepeatshape - repeats the periodic connected shape in requested directions requested number of times; * cperiodictwins - returns all periodic twins for the shape; * cclearrepetitions - clears all previous repetitions of the periodic shape, keeping the shape periodic. Documentation & test cases for the new algorithm.
31 lines
751 B
Plaintext
31 lines
751 B
Plaintext
restore [locate_data_file bug29692_s26.brep] s
|
|
|
|
# rebuild the compound ensuring that each material is valid
|
|
compound materials
|
|
|
|
foreach c [explode s] {
|
|
set ss [explode $c]
|
|
if {[llength $ss] > 1} {
|
|
eval makeconnected r $ss
|
|
add r materials
|
|
} else {
|
|
add $ss materials
|
|
}
|
|
}
|
|
|
|
eval makeconnected connected [explode materials]
|
|
|
|
checkshape connected
|
|
if {![regexp "OK" [bopcheck connected]]} {
|
|
puts "Error: Unable to make connected"
|
|
}
|
|
checknbshapes connected -vertex 44 -edge 80 -wire 49 -face 47 -shell 9 -solid 9 -t
|
|
checkprops connected -s 1.11312e+007 -v 3.0528e+008
|
|
|
|
cmakeperiodic result -x 2400 -y 240
|
|
|
|
checkshape result
|
|
# no new splits expected
|
|
checknbshapes result -ref [nbshapes connected -t] -t
|
|
checkprops result -equal connected
|