Skip to main content

alux_shape/
lib.rs

1#![doc = include_str!("../README.md")]
2
3extern crate self as alux_shape;
4
5mod algebra;
6mod derived;
7mod edge;
8mod program;
9mod spell;
10mod std_shapes;
11
12pub use algebra::*;
13pub use alux_shape_macros::{Shape, shape_layout};
14pub use derived::*;
15pub use edge::*;
16pub use program::*;
17pub use spell::*;