pub trait Area<F> {
    fn area(&self) -> F;
}
Expand description

Calculate the area of a geometry.

Required Methods

Compute the area of a geometrical shape by first computing doubled oriented area and then taking absolute value of the half.

Implementors