msla_format 0.2.0

Library for encoding and decoding various MSLA file formats: Elegoo (.goo), Chitu Encrypted (.ctb), NanoDLP (.nanodlp).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Container types.

mod bitvec;
mod clusters;
mod image;
pub mod rle;
pub use self::{
    bitvec::BitVec,
    clusters::Clusters,
    image::{Image, ImageRuns},
    rle::Run,
};