FreeCAD-Doc/localwiki/Arch_JSON.html
2018-07-08 12:11:49 -05:00

38 lines
1.8 KiB
HTML

<html><head><title>Arch JSON</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Arch JSON</h1></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><p>The main purpose of this export format is to make it easier to process FreeCAD model data from programming languages. The <a rel="nofollow" class="external text" href="http://json.org/">JSON</a> format is as follows:
</p>
<pre> {
"version": "0.0.1",
"description": "Mesh data exported from FreeCAD",
"objects": [
{
"name": "&lt;object name&gt;",
"description": "&lt;object description&gt;",
"color": "&lt;object color&gt;",
"wires": [[[&lt;float&gt;, &lt;float&gt;, &lt;float&gt;], . . .], . . .],
"vertices": [[&lt;float&gt;, &lt;float&gt;, &lt;float&gt;], . . .],
"normals": [[&lt;float&gt;, &lt;float&gt;, &lt;float&gt;], . . .],
"facets": [[&lt;int&gt;, &lt;int&gt;, &lt;int&gt;], . . .]
}, . . .
]
}
</pre>
<p>Note that facets form triangles and their integer values reference points in the <b>vertices</b> array. Facet normals are found at the corresponding position in the <b>normals</b> array. <b>description</b>, <b>color</b> and <b>wires</b> are all optional. This format could easily be expanded to include additional model data.
</p>
<div style="clear:both"></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Arch_JSON&amp;oldid=255757">http://www.freecadweb.org/wiki/index.php?title=Arch_JSON&amp;oldid=255757</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>