GlTF

From FreeCAD Documentation
Revision as of 11:23, 20 December 2020 by Roy 043 (talk | contribs) (Added translation tags and some tweaks.)
Other languages:

Description

The GL Transmission Format (glTF™) is a royalty-free specification for the efficient transmission and loading of 3D scenes and models by applications. It minimizes both the size of 3D assets, and the runtime processing needed to unpack and use those assets.

Importing

Currently not supported in FreeCAD.

Exporting

Since FreeCAD version 0.19.23074 the Std Export command can export to the gITF format.

Alternative export solutions

For earlier versions these workarounds can be used:

1. Export as STEP → Import into CAD Assistant from Opencascade -> Export to glTF

OR

2. Use the cqparts python library (website):

import cqparts
cqparts.Assembly.importer('step')('myfile.stp').exporter('gltf')('myfile.gltf')

Source: Forum thread

Related