valora 0.2.12

A brush for generative fine art.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Subdivisions.

/// A trait for types which can subdivide and retain characteristics.
pub trait Subdivide: Sized {
    /// Subdivides by one order while retaining shape.
    fn subdivide(self) -> Self;

    // Subdivides by n orders while retaining shape.
    fn subdivide_n(self, n: usize) -> Self {
        let mut result = self;
        for _ in 0..n {
            result = result.subdivide();
        }
        result
    }
}