mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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)
19 lines
434 B
Plaintext
19 lines
434 B
Plaintext
puts "============="
|
|
puts "0030949: Foundation Classes - Dump improvement for OCCT classes"
|
|
puts "============="
|
|
|
|
set px 1
|
|
set py 2
|
|
set pz 3
|
|
|
|
vertex vv $px $py $pz
|
|
set log [bounding vv -obb -dumpJson]
|
|
|
|
if {![regexp {"gp_XYZ": \[+([-0-9.+eE]+)\, +([-0-9.+eE]+)\, +([-0-9.+eE]+)} $log full xc yc zc]} {
|
|
puts "Error in DumpJson."
|
|
}
|
|
|
|
checkreal "XC" $xc $px 1.0e-7 0.0
|
|
checkreal "YC" $yc $py 1.0e-7 0.0
|
|
checkreal "ZC" $zc $pz 1.0e-7 0.0
|