Expand description
The excellent FBX library.
low
module provides low-level data types such as FBX header, node
attribute value, etc.
pull_parser
module provides pull parser for FBX binary format.
ASCII format is not supported.
tree
module provides tree types, which allow users to access FBX data as
tree, not as stream of parser events.
To use tree
module, enable tree
feature.
writer
module provides writer types.
To use writer
module, enable writer
feature.
Modules§
- low
- Low-level or primitive data types for FBX binary.
- pull_
parser - Pull parser for FBX binary.
- tree
tree
- FBX data tree.
- writer
writer
- FBX writer.
Macros§
- tree_
v7400 tree
- Constructs a tree.
- write_
v7400_ binary writer
- Drives the given writer to write the given tree as FBX binary, and returns
the
fbxcel::writer::v7400::binary::Result<()>
.