vmd_parser 0.1.0

load and save .vmd animation file.
Documentation
  • Coverage
  • 0%
    0 out of 37 items documented0 out of 24 items with examples
  • Size
  • Source code size: 25.96 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.46 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 19s Average build duration of successful builds.
  • all releases: 19s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • 823984418

vmd_parser

The Vocaloid Motion Data (VMD) file format is the file format used to store animations for models used in the MikuMikuDance (Polygon Movie Maker) animation program.

load '.vmd' file

pub fn vmd_read<R: Read>(read: &mut R) -> Result<Vmd, VmdError>

save '.vmd' file

pub fn vmd_write<W: Write>(write: &mut W, vmd: &Vmd) -> Result<(), VmdError>