mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Splitting of subgroups bugs/modalg and bugs/moddata to optimise time of testing Correction of end file in group v3d Small correction of test case
42 lines
606 B
Plaintext
Executable File
42 lines
606 B
Plaintext
Executable File
|
|
puts "========"
|
|
puts "OCC203"
|
|
puts "========"
|
|
|
|
set dx 100
|
|
set dy 100
|
|
set dz 100
|
|
|
|
box b ${dx} ${dy} ${dz}
|
|
|
|
renamevar b edge
|
|
explode edge e
|
|
|
|
renamevar edge face
|
|
explode face f
|
|
|
|
set radis 5
|
|
set angle 45
|
|
|
|
chamf result1 face edge_1 face_3 A ${radis} ${angle}
|
|
|
|
explode result1 e
|
|
|
|
decho off
|
|
if { [catch {fillet result result1 ${radis} result1_1 ${radis} result1_7 } catch_result] } {
|
|
set mistake 1
|
|
} else {
|
|
set mistake 0
|
|
}
|
|
decho on
|
|
|
|
if { $mistake != 0} {
|
|
puts "OK OCC203"
|
|
puts "Filet can not be created"
|
|
} else {
|
|
puts "Faulty OCC203: function FILLET works wrongly"
|
|
checkshape result
|
|
}
|
|
|
|
|