1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/moddata_3/bug30342_1
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
349 B
Plaintext

puts "=========="
puts "0030342: Modeling Data - Successively trimming surface in both directions lose the first trim"
puts "=========="
puts ""
cylinder c1 10
trim c3 c1 0 3.14 0 50
set expected [dump c3]
trimu c2 c1 0 3.14
trimv c3 c2 0 50
set result [dump c3]
if { [string compare $expected $result] != 0 } {
puts "Error: invalid result"
}