X-Git-Url: https://codewiz.org/gitweb?p=mandelwow.git;a=blobdiff_plain;f=cube.rs;fp=cube.rs;h=de5315b80fa498404e6108d8e450732312488e32;hp=0000000000000000000000000000000000000000;hb=4168a7f814e1ed23a2f6e93d312c87bb2cb3005a;hpb=ae66bb7bf28bd495d38241b643144956c2f9af91 diff --git a/cube.rs b/cube.rs new file mode 100644 index 0000000..de5315b --- /dev/null +++ b/cube.rs @@ -0,0 +1,11 @@ +use std::f32; + +#[derive(Copy, Clone)] +pub struct Cube { + pub xmin: f32, + pub ymin: f32, + pub zmin: f32, + pub xmax: f32, + pub ymax: f32, + pub zmax: f32, +}