Trait geo::CoordFloat

source ·
pub trait CoordFloat: CoordNum + Float { }
Expand description

For algorithms which can only use floating point Points/Coords, like area or length calculations

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> CoordFloat for T
where T: CoordNum + Float,