From 55cece063ff8d0bc8ef1e5172cda0511ec2d8259 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sat, 27 Jun 2026 11:07:23 -0400 Subject: [PATCH] Fix documentation whitespace --- enkou-shaders/src/camera.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enkou-shaders/src/camera.rs b/enkou-shaders/src/camera.rs index 7844233..21c6867 100644 --- a/enkou-shaders/src/camera.rs +++ b/enkou-shaders/src/camera.rs @@ -1,12 +1,12 @@ //! # Camera -//! +//! //! Map points from the IFS coordinate system to pixel coordinates. This is a lossy transformation. use bytemuck::{Pod, Zeroable}; use glam::{Affine2, IVec2, UVec2, Vec2, vec2}; use libm::powf; /// Settings used to map IFS coordinates to pixel coordinates. -/// +/// /// The camera is itself an affine transformation, capable of zoom, rotation, and translation /// of the IFS coordinates before rendering to the final image. #[derive(Copy, Clone, Pod, Zeroable)]