tma_engine 0.2.0

A lightweight crate for defining, composing, and applying 2D affine transformations.
Documentation
1
2
3
4
5
6
7
8
9
/// Module for TMA Engine: Geometry and Rendering
/// This crate provides tools for defining and manipulating 2D affine
/// transformations (TMAs) and rendering fractal structures generated
/// through Iterated Function Systems (IFS).
pub mod geometry;
pub mod render;

pub use geometry::{IFS, Point, TMA};
pub use render::Renderer;