FBX Writer
| FBX | |
| File Extension | FBX |
| Supported Versions | 7400, ASCII or Binary |
| Platforms | |
| Tessellation | |
| B-rep | N/A |
| PMI | N/A |
The FBX file format (Filmbox) was originally developed by Kaydara and is now owned by Autodesk since 2006. It was created to provide interoperability between various digital content creation applications and has become a standard in the 3D modeling and animation industry.
The HOOPS Exchange writer allows developers to export the PRC tree to FBX.
HOOPS Exchange allows to control the format type to be selected (ASCII or binary file), as well as the folder in which the textures are written.
The texture are always exported to an external file, whichever export type is used (ASCII or Binary). To customize the exported texture location, see A3DRWParamsExportFbxData.
How to Export to FBX
To export a model to FBX, use A3DAsmModelFileExportToFbxFile().
Customize the export using A3DRWParamsExportFbxData.
A3DRWParamsExportFbxData sParamsExportData;
A3D_INITIALIZE_DATA(A3DRWParamsExportFbxData, sParamsExportData);
// ... set export parameter options
A3DAsmModelFileExportToFbxFile(pModelFile, &sParamsExportData, "path/to/file.fbx");
Export parameters are available using A3DRWParamsExportFbxData and export is performed by calling A3DAsmModelFileExportToFbxFile().
Assembly
To understand and manipulate the model tree before export, see assembly traversal or the :doc:`Tree Traversal API <guide/tree_traversal>’.
Before exporting, ensure that the model contains the geometry and tessellation you expect. See our pages on tessellation for tips on generating visualization data for export.
Limitations
The export is available for Windows, Linux and macOS only.
FBX-DOM files are unsupported.