diff --git a/geo/CHANGES.md b/geo/CHANGES.md index 9c53462bc..0e06c85f4 100644 --- a/geo/CHANGES.md +++ b/geo/CHANGES.md @@ -2,6 +2,7 @@ ## Unreleased +- Add top-level doc link for `InteriorPoint` - Add Unary Union algorithm for fast union ops on adjacent / overlapping geometries - - Loosen bounds on `RemoveRepeatedPoints` trait (`num_traits::FromPrimitive` isn't required) diff --git a/geo/src/lib.rs b/geo/src/lib.rs index 88b1634f5..d58cd0d7d 100644 --- a/geo/src/lib.rs +++ b/geo/src/lib.rs @@ -95,6 +95,8 @@ //! - **[`LineLocatePoint`]**: Calculate the //! fraction of a line’s total length representing the location of the closest point on the //! line to the given point +//! - **[`InteriorPoint`]**: +//! Calculates a representative point inside a `Geometry` //! //! ## Topology //!