gltf_kun 0.0.5

Graph-based glTF processing library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A document provides a high-level API for interacting with the internal graph.
//!
//! There are two provided document types:
//! [`GltfDocument`] for [glTF](https://github.com/KhronosGroup/glTF) files,
//! and [`GlxfDocument`] for [glXF](https://github.com/KhronosGroup/glXF) files.

mod gltf;
mod glxf;

pub use gltf::*;
pub use glxf::*;