tessellations 0.3.0

Library to create and draw periodic tilings of the plane.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub enum TessellationShape {
    S,
    U,
    I,
    J,
}

impl Default for TessellationShape {
    fn default() -> Self {
        TessellationShape::S
    }
}