cargo fmt.

This commit is contained in:
Bill Thiede 2022-07-28 21:39:14 -07:00
parent 78f7ca8956
commit 55af087d69
3 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@ use std::{
str::FromStr,
sync::{
mpsc::{sync_channel, Receiver, SyncSender},
{Arc, Mutex},
Arc, Mutex,
},
thread,
};

View File

@ -1,6 +1,4 @@
use std::fs::File;
use std::io::BufWriter;
use std::path::Path;
use std::{fs::File, io::BufWriter, path::Path};
use png;
use thiserror::Error;

View File

@ -1,5 +1,7 @@
use std::fmt;
use std::ops::{Index, IndexMut, Mul, Sub};
use std::{
fmt,
ops::{Index, IndexMut, Mul, Sub},
};
use crate::{tuples::Tuple, Float, EPSILON};