pub trait DoubledOrientedArea<A> {
    fn area_doubled_oriented(&self) -> A;
}
Expand description

Calculate the doubled oriented area of a geometry. Using the doubled area allows to compute the area without using fractions. This is especially helpful when computing in integer coordinates.

  • A: Area type.

Required Methods

Calculate doubled oriented area of this geometry. Using the doubled area allows to compute the area without using fractions.

Implementors