38 lines
1.8 KiB
HTML
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": "<object name>",
|
|
"description": "<object description>",
|
|
"color": "<object color>",
|
|
"wires": [[[<float>, <float>, <float>], . . .], . . .],
|
|
"vertices": [[<float>, <float>, <float>], . . .],
|
|
"normals": [[<float>, <float>, <float>], . . .],
|
|
"facets": [[<int>, <int>, <int>], . . .]
|
|
}, . . .
|
|
]
|
|
}
|
|
</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&oldid=255757">http://www.freecadweb.org/wiki/index.php?title=Arch_JSON&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> |