We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d9b4e9 commit aaa4557Copy full SHA for aaa4557
src/core/renderer.rs
@@ -62,7 +62,7 @@ pub fn generate_points<R: Rng + Clone>(
62
/// * `ys` - Y coordinates
63
/// * `height` - Height of the output space
64
/// * `width` - Width of the output space
65
-fn normalize_points(xs: &mut Vec<f64>, ys: &mut Vec<f64>, height: usize, width: usize) {
+fn normalize_points(xs: &mut [f64], ys: &mut [f64], height: usize, width: usize) {
66
// Find min and max values
67
let x_min = xs.iter().fold(f64::INFINITY, |a, &b| a.min(b));
68
let x_max = xs.iter().fold(f64::NEG_INFINITY, |a, &b| a.max(b));
0 commit comments