voxelify 0.1.0

Convert a 2D pixel art image into GLTF 3D object
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::fmt::Debug;
use std::num::TryFromIntError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum VoxelifyError {
    #[error("Failed to serialize glTF")]
    SerializationError(#[from] gltf::json::Error),
    #[error("File size exceeds binary glTF limit")]
    SizeError(#[from] TryFromIntError),
}