Skip to content

Commit aaa4557

Browse files
Fix
1 parent 0d9b4e9 commit aaa4557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/renderer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub fn generate_points<R: Rng + Clone>(
6262
/// * `ys` - Y coordinates
6363
/// * `height` - Height of the output space
6464
/// * `width` - Width of the output space
65-
fn normalize_points(xs: &mut Vec<f64>, ys: &mut Vec<f64>, height: usize, width: usize) {
65+
fn normalize_points(xs: &mut [f64], ys: &mut [f64], height: usize, width: usize) {
6666
// Find min and max values
6767
let x_min = xs.iter().fold(f64::INFINITY, |a, &b| a.min(b));
6868
let x_max = xs.iter().fold(f64::NEG_INFINITY, |a, &b| a.max(b));

0 commit comments

Comments
 (0)