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
26 lines
611 B
Plaintext
26 lines
611 B
Plaintext
puts "========"
|
|
puts "0027383: Modeling - improve handling of regularity on edges"
|
|
puts "========"
|
|
puts ""
|
|
puts "Check regularity setting on edges of cylinder split by angle"
|
|
|
|
# split of cylinder
|
|
pload MODELING
|
|
pcylinder p 2 10
|
|
DT_SplitAngle r p
|
|
|
|
explode r f
|
|
explode r_1 e
|
|
getedgeregularity r_1_2 r_1 r_2 ;# returns C0: regularity is not set at all
|
|
encoderegularity r
|
|
if { ! [regexp "CN" [getedgeregularity r_1_2 r_1 r_2]] } {
|
|
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
|