1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/vis/bug30949
nds 0904aa6395 0030949: Foundation Classes - Dump improvement for OCCT classes
1. new file Standard_Dump to prepare and parse Dump in JSON format for OCCT objects
2. some presentations cover the proposed dump functionality.
3. 'bounding', 'vaspects' has '-dumpJson' field to see the DumpJson result
4. Bnd_Box constructor with min/max points is implemented to use Dump of this class in Dump BVH_Box
5. Limitation (some classes of Graphic3d, Prs3d has not full filling for DumpJson)
2019-09-20 19:39:28 +03:00

35 lines
1.0 KiB
Plaintext

puts "============="
puts "0030949: Foundation Classes - Dump improvement for OCCT classes"
puts "============="
pload VISUALIZATION
vinit View1
set pred 0.329
set pgreen 0.224
set pblue 0.027
set dump_aligned_off [vaspects -defaults -dumpJson -dumpCompact on]
if {![regexp {"RGB": \[+([-0-9.+eE]+)\, +([-0-9.+eE]+)\, +([-0-9.+eE]+)\]} $dump_aligned_off full cred cgreen cblue]} {
puts "Error in Dump. Wrong format of output."
}
checkreal "Cred" $cred $pred 1.0e-7 0.0
checkreal "Cgreen" $cgreen $pgreen 1.0e-7 0.0
checkreal "Cblue" $cblue $pblue 1.0e-7 0.0
set dump_aligned_off_deep [vaspects -defaults -dumpJson -dumpCompact on -dumpDepth 2]
if {[regexp {\[+([-0-9.+eE]+)\, +([-0-9.+eE]+)\, +([-0-9.+eE]+)\]} dump_aligned_off_deep full cred cgreen cblue]} {
puts "Error in Dump. Wrong deep of output"
}
puts "Aligned Dump of vaspects:"
set dump_aligned_on [vaspects -defaults -dumpJson]
puts "Aligned Dump of vaspects (deep = 2):"
set dump_aligned_on_deep [vaspects -defaults -dumpJson -dumpCompact off -dumpDepth 2]