mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
The methods BOPAlgo_Tools::MakeBlocksCnx(), BOPAlgo_Tools::MakeBlocks() and static method MakeBlocksCnx in BOPAlgo_Builder_2.cxx have been replaced with the new template method BOPAlgo_Tools::MakeBlocks(). The blocks of connected elements are now stored into the list of list instead of data map. All methods BOPAlgo_Tools::FillMap() have been replaced with the new template method BOPAlgo_Tools::FillMap(). Making the Pave Block with the smallest index of original edge to be the first in the Common Block (i.e. the representing Pave Block). The following improvements have been made in Boolean Operations algorithm to avoid regressions: - When updating the existing common block update its pave blocks in a way that the parameters of the paves should be valid for the original edge (bugs/modalg_5/bug24809); - When trying to reduce the tolerance of the section edge check the tolerance of all Face/Face interferences that created this edge (boolean/volumemaker/C4,D2); - Avoid producing the different Pave Blocks for the same section edge (boolean/volumemaker/D6); Adjustment of the test cases.
29 lines
765 B
Plaintext
29 lines
765 B
Plaintext
puts "========"
|
|
puts "0027383: Modeling - improve handling of regularity on edges"
|
|
puts "========"
|
|
puts ""
|
|
#################################################################
|
|
# Check regularity setting on edges between same-domain faces after fuse
|
|
#################################################################
|
|
|
|
# fuse of two boxes
|
|
pload MODELING
|
|
box b1 10 10 10
|
|
box b2 5 5 0 10 10 10
|
|
bfuse r b1 b2
|
|
explode r f
|
|
explode r_7 e
|
|
getedgeregularity r_7_4 r_3 r_7 ;# returns C0: regularity is not set at all
|
|
encoderegularity r
|
|
|
|
if { ! [regexp "CN" [getedgeregularity r_7_4 r_3 r_7]] } {
|
|
puts "Error: Invalid regularity of the edge, expected CN"
|
|
}
|
|
|
|
# make image in HLR mode as illustration
|
|
pload VISUALIZATION
|
|
vdisplay r
|
|
vfit
|
|
vhlr on
|
|
vdump ${imagedir}/${test_image}.png
|