mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- properly process 0-density material - create STEP density structures if and only if the density is > 0 - properly process 0-density material - create STEP density structures if and only if the density is > 0, but preserve the already mapped structures Test-case for issue #25910
19 lines
476 B
Plaintext
19 lines
476 B
Plaintext
puts "========"
|
|
puts "OCC25910"
|
|
puts "========"
|
|
puts ""
|
|
#######################################################################
|
|
# The material with 0-density causes errors during writing STEP files
|
|
#######################################################################
|
|
|
|
pload DCAF
|
|
|
|
NewDocument D
|
|
box b 10 10 10
|
|
XSetMaterial D [XAddShape D b] Vacuum 0.
|
|
set bug_info [catch {WriteStep D $imagedir/OCC25910.stp}]
|
|
|
|
if {$bug_info != 0} {
|
|
puts "ERROR: OCC25910 is reproduced."
|
|
}
|