mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
31 lines
731 B
Plaintext
31 lines
731 B
Plaintext
puts "================"
|
|
puts "OCC25706"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# Exception in conversion B-spline to rational
|
|
#######################################################################
|
|
|
|
bsplinesurf s \
|
|
2 2 0 3 1 3 \
|
|
2 2 0 3 1 3 \
|
|
0.0 0.0 0.0 1 0.5 0.0 0.0 1 1.0 0.0 0.0 1 \
|
|
0.0 0.5 0.0 1 0.5 0.5 1.0 1 1.0 0.5 0.0 1 \
|
|
0.0 1.0 0.0 1 0.5 1.0 0.0 1 1.0 1.0 0.0 1
|
|
mkface f1 s
|
|
|
|
dump s
|
|
|
|
setweight s 2 2 0.5
|
|
|
|
set info [dump s]
|
|
if { [regexp {rational} ${info}] } {
|
|
puts "OK : B-spline is rational"
|
|
} else {
|
|
puts "Error : B-spline is non-rational"
|
|
}
|
|
|
|
mkface result s
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|