//! The [`PointOrder`] enum: vertex traversal direction of a ring.
//!
//! Mirrors `boost::geometry::order_selector` from
//! `boost/geometry/core/point_order.hpp`. The Rust port drops the
//! `order_undetermined` variant — like `closure_undetermined`, Boost
//! itself flags it "(not yet supported)" in the same header.
/// Vertex traversal direction of a ring's boundary.
///
/// Mirrors `boost::geometry::order_selector` from
/// `boost/geometry/core/point_order.hpp`.
///
/// # Examples
///
/// ```
/// use geometry_trait::PointOrder;
/// assert_ne!(PointOrder::Clockwise, PointOrder::CounterClockwise);
/// ```