Trait Area
Source pub trait Area<F> {
// Required method
fn area(&self) -> F;
}
Expand description
Calculate the area of a geometry.
Compute the area of a geometrical shape by first computing
doubled oriented area and then taking absolute value of the half.