fbx_direct 0.6.0

Low-level FBX library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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.

#[macro_use]
extern crate log;

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

pub mod common;
pub mod reader;
pub mod writer;