From 6774d94ba9f99930c8bac7e3fda1485426fcf9b8 Mon Sep 17 00:00:00 2001 From: Matthias Wuketich Date: Tue, 3 Jun 2025 23:14:40 +0200 Subject: [PATCH] fixed doc oversight --- crates/bevy_mesh/src/primitives/dim3/plane.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_mesh/src/primitives/dim3/plane.rs b/crates/bevy_mesh/src/primitives/dim3/plane.rs index 4bad946c66..e937905584 100644 --- a/crates/bevy_mesh/src/primitives/dim3/plane.rs +++ b/crates/bevy_mesh/src/primitives/dim3/plane.rs @@ -9,7 +9,7 @@ use bevy_reflect::prelude::*; pub struct PlaneMeshBuilder { /// The [`Plane3d`] shape. pub plane: Plane3d, - /// The number of subdivisions in the mesh. + /// The number of subdivisions along the X axis. /// /// 0 - is the original plane geometry, the 4 points in the XZ plane. /// @@ -20,7 +20,7 @@ pub struct PlaneMeshBuilder { /// and so on... pub subdivisions_x: u32, - /// The number of subdivisions in the mesh. + /// The number of subdivisions along the Z axis. /// /// 0 - is the original plane geometry, the 4 points in the XZ plane. /// @@ -108,7 +108,7 @@ impl PlaneMeshBuilder { } #[inline] - /// The number of subdivisions in the mesh. + /// The number of subdivisions along the X axis. /// /// 0 - is the original plane geometry, the 4 points in the XZ plane. /// @@ -123,7 +123,7 @@ impl PlaneMeshBuilder { } #[inline] - /// The number of subdivisions in the mesh. + /// The number of subdivisions along the Z axis. /// /// 0 - is the original plane geometry, the 4 points in the XZ plane. ///