mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added trim for U and V directions when trimming happens sequentially in these directions. Added possibility to set sense to trim command.
18 lines
346 B
Plaintext
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"
|
|
}
|