Crates.io | vmd_parser |
lib.rs | vmd_parser |
version | 0.1.0 |
source | src |
created_at | 2023-11-11 07:08:26.855481 |
updated_at | 2023-11-11 07:08:26.855481 |
description | load and save .vmd animation file. |
homepage | |
repository | https://github.com/823984418/vmd_parser |
max_upload_size | |
id | 1031909 |
size | 24,220 |
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>