Trait rin_graphics::GeometryIterator[][src]

pub trait GeometryIterator {
    type Point;
    type Field;
    fn signed_area(self) -> Self::Field;
fn centroid(self) -> Option<Self::Point>; }

Associated Types

type Point[src]

type Field[src]

Loading content...

Required methods

fn signed_area(self) -> Self::Field[src]

fn centroid(self) -> Option<Self::Point>[src]

Loading content...

Implementors

impl<T, I: Iterator<Item = Pnt2<T>>> GeometryIterator for I where
    T: RealField + NumCast
[src]

type Point = Pnt2<T>

type Field = T

Loading content...