Sierpinski Gasket #2

Merged
bspeice merged 8 commits from sierpinski_gasket into main 2026-06-27 14:14:40 -04:00
Showing only changes of commit 55cece063f - Show all commits
+2 -2
View File
@@ -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)]