[][src]Trait valora::transforms::Subdivide

pub trait Subdivide: Sized {
    fn subdivide(self) -> Self;

    fn subdivide_n(self, n: usize) -> Self { ... }
}

A trait for types which can subdivide and retain characteristics.

Required methods

fn subdivide(self) -> Self

Subdivides by one order while retaining shape.

Loading content...

Provided methods

fn subdivide_n(self, n: usize) -> Self

Loading content...

Implementors

impl Subdivide for Polygon[src]

Loading content...