pub trait Pattern {
    fn new() -> Self;
    fn pattern_2d(&self, p: (FP, FP)) -> FP;
}

Required Methods

2D pattern for the given position and display ratio (width / height)

Implementors