mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
35 lines
736 B
Plaintext
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"
|
|
}
|
|
}
|