mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Implemented additional verification of periodicity of B-spline surfaces when calculating UV-bounds Test case for issue CR25584
24 lines
562 B
Plaintext
Executable File
24 lines
562 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC25584"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# Wrong result obtained by PerformInfinitePoint Test
|
|
#######################################################################
|
|
|
|
restore [locate_data_file t6.rle] res_1
|
|
|
|
explode res_1
|
|
|
|
shape z so
|
|
add res_1_3 z
|
|
|
|
vprops z
|
|
|
|
set res [xclassify z]
|
|
if { [regexp "IN" $res] == 1 } {
|
|
puts "OK : Good result obtained by PerformInfinitePoint Test"
|
|
} else {
|
|
puts "Error : Wrong result obtained by PerformInfinitePoint Test"
|
|
}
|