plottery_lib 0.7.0

Core geometry library of Plottery, a creative coding framework for generative vector graphics and pen plotting.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod angle;
pub mod angle_operators;
mod angle_test;
pub mod consts;
pub mod float;
mod float_test;
pub mod noise;
mod noise_test;
pub mod random;
mod thread_local;

pub use angle::*;
pub use consts::*;
pub use float::*;
pub use noise::*;
pub use random::*;
pub use thread_local::{seed, seed_random};