mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Increase minimum number of discretization points by one explicitly on each iteration of model healer to cover cases degenerated to line (for cases when face consists of 2 edges only).
23 lines
424 B
Plaintext
23 lines
424 B
Plaintext
puts "======="
|
|
puts "CR28500: Artifact in shaded view of the shape"
|
|
puts "======="
|
|
puts ""
|
|
|
|
restore [locate_data_file bug28500_shape_mesh_artifact.brep] result
|
|
|
|
tclean result
|
|
incmesh result 0.01
|
|
|
|
vinit
|
|
vsetdispmode 1
|
|
vdefaults -autoTriang 0
|
|
vdisplay result
|
|
vfit
|
|
|
|
set log [tricheck result]
|
|
if { [llength $log] != 0 } {
|
|
puts "Error : Mesh contains faulties"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|