mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
Modifications: Definition closure surface by U and V by distance between isolines on bounds Comparison to isolines on identity Implementation of short dump of surface and curves Change order of comparison Fix and test script for bug 0023475 Modification of script to restore surface Modification for correction regression ( UIso and VIso were confused) Modified test case and test surface for bug 0023475
17 lines
442 B
Plaintext
Executable File
17 lines
442 B
Plaintext
Executable File
puts "============"
|
|
puts "CR23475"
|
|
puts "==========="
|
|
puts ""
|
|
###############################################################################
|
|
# Wrong result of Geom_BSpline_Surface::IsVClosed()
|
|
###############################################################################
|
|
|
|
restore [locate_data_file bug23475.brep] s1
|
|
set info [dump s1]
|
|
|
|
if { [regexp "BSplineSurface vclosed" $info] != 1} {
|
|
puts "Error : surface is not closed by V"
|
|
}
|
|
|
|
|