From ab4291f93e2ee450d755d1febd5ac6815d8d9cdd Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Fri, 27 Sep 2024 22:03:32 -0700 Subject: [PATCH] Remove doc links referring to hidden `camera` module. --- all-is-cubes/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/all-is-cubes/src/lib.rs b/all-is-cubes/src/lib.rs index 7645e6a99..6bc266b8d 100644 --- a/all-is-cubes/src/lib.rs +++ b/all-is-cubes/src/lib.rs @@ -70,10 +70,9 @@ //! * [`Space`] and [`Block`] use 3-dimensional integer coordinates with no assumptions //! about axes. However, the default [`SpacePhysics`] configuration currently has a //! gravity vector in the −Y direction. -//! * [`camera`] assumes OpenGL-style coordinates: +X right, +Y up, +Z towards viewer — -//! a “right-handed” coordinate system. //! * [`Character`] and [`Body`] have a look direction and corresponding transformation -//! matrix which use the same coordinate system as [`camera`]. +//! matrix which assumes OpenGL-style coordinates: +X right, +Y up, +Z towards viewer — +//! a “right-handed” coordinate system. //! Jumping is also hardcoded to work in the +Y direction. //! Future versions may support arbitrary character orientation. //!