mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The method *BRepTools::UpdateFaceUVPoints* has been modified to resets the UV points of the edge to the bounding points of the parametric curve of the edge on the face. Test cases for the issue. Adjust test cases heal split_angle_advanced ZC3, ZE6, ZE9 for current behavior as they show less faulty shapes now. Adjust test case bugs modalg_6 bug21246 as it works correctly now.
26 lines
776 B
Plaintext
26 lines
776 B
Plaintext
puts "REQUIRED ALL: Faulty shapes in variables faulty_1 to faulty_2"
|
|
|
|
puts "========"
|
|
puts "OCC21246"
|
|
puts "========"
|
|
puts "Checkshape command does not return faulty shapes."
|
|
puts "========"
|
|
|
|
#########################################################
|
|
## Command "checkshape" "gives" exception during attempt to check attached shape.
|
|
#########################################################
|
|
|
|
restore [locate_data_file bug21246.brep] result
|
|
|
|
set info [checkshape result]
|
|
|
|
if { [regexp "Faulty shapes in variables faulty_1 to faulty_2" ${info}] != 1 } {
|
|
|
|
puts "OK : Good result of checkshape"
|
|
|
|
} elseif { [regexp "Problems are not detected" $info] == 1 } {
|
|
|
|
puts "Error : Wrong result of checkshape"
|
|
|
|
}
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png |