Enum geographiclib_rs::Winding
source · pub enum Winding {
Clockwise,
CounterClockwise,
}
Expand description
Clockwise or CounterClockwise winding
The standard winding of a Simple Feature polygon is counter-clockwise. However, if the polygon is a hole, then the winding is clockwise. ESRI Shapefile polygons are opposite, with the outer-ring being clockwise and holes being counter-clockwise.
Variants§
Trait Implementations§
impl Copy for Winding
Auto Trait Implementations§
impl RefUnwindSafe for Winding
impl Send for Winding
impl Sync for Winding
impl Unpin for Winding
impl UnwindSafe for Winding
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more