1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_7/bug29701_3
emv e50ebf1f0f 0029701: BRepTools::Update(Face) unexpectedly updates UV points of pcurve
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.
2018-05-23 06:39:49 +03:00

35 lines
736 B
Plaintext

puts "========"
puts "OCC29701"
puts "========"
puts ""
#################################################
# BRepTools::Update(Face) unexpectedly updates UV points of pcurve
#################################################
brestore [locate_data_file bug29701_Plate_B.brep] s
# mesh the face
repeat 2 {
if {![regexp "NoError" [incmesh s 0.1]]} {
puts "Error: Unable to build triangulation"
}
}
tcopy s copy
# mesh the copy face
repeat 2 {
if {![regexp "NoError" [incmesh copy 0.1]]} {
puts "Error: Unable to build triangulation on copy shape"
}
}
fixshape fixed s
# mesh the fixed face
repeat 2 {
if {![regexp "NoError" [incmesh fixed 0.1]]} {
puts "Error: Unable to build triangulation on fixed shape"
}
}