mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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
349 B
Plaintext
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"
|
|
}
|