vpin 0.23.5

Rust library for working with Visual Pinball VPX files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//!
//! Vpin is a library for the virtual/visual pinball ecosystem.
//!
//! It provides a set of tools to work with the various file formats used by the different applications.
//!
//! The main focus is on the Visual Pinball X (VPX) file format, but it also provides tools for backglass DirectB2S and Point of View POV files.

pub mod filesystem;
pub(crate) mod gltf;
pub mod vpx;
pub(crate) mod wavefront_obj_io;

#[cfg(feature = "wasm")]
pub mod wasm;