From e6ff1c37d4c6650b58a4e75f88216b6d8bee8d43 Mon Sep 17 00:00:00 2001 From: "Mykhaylo (Misha) Ivanovych Kuzma" <13275599+mishakuzma@users.noreply.github.com> Date: Sat, 1 Oct 2022 16:07:54 -0600 Subject: [PATCH 1/2] Docs: Transform trait doc added to root index. --- geo/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/geo/src/lib.rs b/geo/src/lib.rs index 6d49e392c..4b417a46c 100644 --- a/geo/src/lib.rs +++ b/geo/src/lib.rs @@ -148,6 +148,7 @@ //! - **[`proj`](proj)**: Project geometries with the `proj` crate (requires the `use-proj` feature) //! - **[`ChaikinSmoothing`](ChaikinSmoothing)**: Smoothen `LineString`, `Polygon`, `MultiLineString` and `MultiPolygon` using Chaikins algorithm. //! - **[`Densify`](Densify)**: Densify linear geometry components by interpolating points +//! - **[`Transform`](Transform)**: Transform a geometry using Proj. //! //! # Features //! From f8c3984a593dce53254a6586ffc3fb6b9c11c0eb Mon Sep 17 00:00:00 2001 From: "Mykhaylo (Misha) Ivanovych Kuzma" <13275599+mishakuzma@users.noreply.github.com> Date: Sat, 1 Oct 2022 16:13:39 -0600 Subject: [PATCH 2/2] Log: Added line to geo changelog --- geo/CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geo/CHANGES.md b/geo/CHANGES.md index 5dd7dcbc6..747e8c141 100644 --- a/geo/CHANGES.md +++ b/geo/CHANGES.md @@ -1,7 +1,7 @@ # Changes ## Unreleased - +* Added doc for Transform trait to root docs index. * Fixed an issues where calculating the convex hull of 3 collinear points would include all 3. *