mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Method BRepLib::EncodeRegularity() is improved to set regularity GeomAbs_CN for edges lying on the same-domain surfaces (where derivatives on both surfaces are equal in all points). DRAW command getedgeregularity is added to query regularity of the edge on specified faces. DRAW command edgeregul is removed (this functionality is provided by command encoderegularity). Added tests: bugs modalg_6 bug27272, bug27383_1, bug27383_2 Correction of shape name in test case for issue CR27272
30 lines
684 B
Plaintext
30 lines
684 B
Plaintext
puts "========"
|
|
puts "0027383: Modeling - improve handling of regularity on edges"
|
|
puts "========"
|
|
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_3 r_3 r_7 ;# returns C0: regularity is not set at all
|
|
encoderegularity r
|
|
|
|
explode res f
|
|
explode res_3 e
|
|
explode res_4 e
|
|
if { ! [regexp "CN" [getedgeregularity r_7_3 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
|