Trait rin::prelude::GeometryIterator[][src]

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

Associated Types

type Point[src]

type Field[src]

Loading content...

Required methods

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

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

Loading content...

Implementors

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

type Point = Point<T, U2>

type Field = T

Loading content...