1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/xde/bug25910
drazmyslovich 41e259eb8b 0025910: The material with 0-density causes errors during writing STEP files
- 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
2015-03-19 17:08:14 +03:00

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."
}