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
18 lines
512 B
Plaintext
18 lines
512 B
Plaintext
puts "========"
|
|
puts "0027272: FixMissingSeam function creates G1 seam curves"
|
|
puts "========"
|
|
puts ""
|
|
puts "Check regularity setting after FixMissingSeam (original problem)"
|
|
|
|
restore [locate_data_file bug27272_SeamTest_unfixed.brep] a
|
|
fixshape res a 1.e-7 1.
|
|
encoderegularity res
|
|
|
|
explode res f
|
|
explode res_3 e
|
|
explode res_4 e
|
|
if { ! [regexp "CN" [getedgeregularity res_3_2 res_3]] ||
|
|
! [regexp "CN" [getedgeregularity res_4_2 res_4]] } {
|
|
puts "Error: Invalid regularity of the seam edge, expected CN"
|
|
}
|