mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-30 12:14:08 +03:00
Remove making BSpline surfaces rational, Add shifting of pcurves on periodic BSpline surfaces, Add cutting of segment from such surfaces. Add additional check for need of make segment Update of test-cases according to the new behavior
17 lines
509 B
Plaintext
17 lines
509 B
Plaintext
puts "========"
|
|
puts "OCC26138"
|
|
puts "========"
|
|
puts ""
|
|
#####################################################
|
|
# Problems with writing periodic BSplines into IGES
|
|
#####################################################
|
|
|
|
igesbrep [locate_data_file OCC26138_Torus.igs] a *
|
|
brepiges a ${imagedir}/bug26138.igs
|
|
igesbrep ${imagedir}/bug26138.igs b *
|
|
set a_info [lindex [sprops a] 2]
|
|
set b_info [lindex [sprops b] 2]
|
|
if {$a_info != $b_info} {
|
|
puts "ERROR: OCC26138 is reproduced. Shape a is not equal to shape b."
|
|
}
|