railway 0.3.3

Binary file format for vector animated pictures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]
extern crate alloc;

pub mod computing;
pub mod rendering;

#[doc(inline)]
pub use {
    computing::SerializedProgram,
    computing::PathStep,
    computing::serialize,
    rendering::NaiveRenderer,
};