1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/moddata_3/bug30342_2
akaftasev c5b42a1afe 0030342: Modeling Data - Successively trimming surface in both directions lose the first trim
Added trim for U and V directions when trimming happens sequentially in these directions.
Added possibility to set sense to trim command.
2020-11-21 12:19:46 +03:00

18 lines
346 B
Plaintext

puts "=========="
puts "0030342: Modeling Data - Successively trimming surface in both directions lose the first trim"
puts "=========="
puts ""
torus t 1 0.5
trim t2 t 0 2 0 4 0 0
set expected [dump t2]
trimu t1 t 0 2 0
trimv t2 t1 0 4 0
set result [dump t2]
if { [string compare $expected $result] != 0 } {
puts "Error: invalid result"
}