rtiow: get build_all_features.sh working again.
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2022-06-13 21:22:20 -07:00
parent e574cdb592
commit 665ae244d7
2 changed files with 0 additions and 14 deletions

View File

@@ -7,7 +7,6 @@ use crate::vec3::Vec3;
#[derive(Debug)]
pub struct Mandelbrot {
scale: f32,
palette: Vec<Vec3>,
}
@@ -49,7 +48,6 @@ fn generate_palette(num: usize) -> Vec<Vec3> {
impl Default for Mandelbrot {
fn default() -> Self {
Mandelbrot {
scale: 2.0,
palette: generate_palette(10),
}
}