From 69bdb6a2e9250047ba93cd282a4ceff9cc5a5e99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20H=C3=BCgel?= Date: Sun, 29 Dec 2024 17:11:23 +0000 Subject: [PATCH] Document InteriorPoint at the top level --- geo/CHANGES.md | 1 + geo/src/lib.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/geo/CHANGES.md b/geo/CHANGES.md index 1217925c4..713c3492f 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 //!