[][src]Crate fbx_direct

This crate currently provides pull parser for Binary FBX.

FBX data consists of generic node and node properties, and it requires interpretation to use as 3D contents. It is similar to relation of XML and COLLADA. COLLADA is represented using XML, but XML DOM is difficult to use directly as COLLADA data. Compare FBX to COLLADA, this crate is XML reader/writer, not COLLADA importer/exporter.

Re-exports

pub use crate::reader::EventReader;
pub use crate::writer::EventWriter;

Modules

common

Contains common types for reader and writer.

reader

Contains interface for a pull-based (StAX-like) FBX parser.

writer

Contains interface for an events-based FBX emitter.