mandelbrot/src/lib.rs

8 lines
170 B
Rust

pub use crate::mandelbrot::Bounds;
pub use crate::mandelbrot::Mandelbrot;
pub const TEXTURE_WIDTH: usize = 1280;
pub const TEXTURE_HEIGHT: usize = 720;
mod mandelbrot;