cargo fmt

This commit is contained in:
Vukašin Stepanović
2023-02-16 08:40:57 +00:00
parent 05e377e85b
commit 844ffc3b81
28 changed files with 80 additions and 156 deletions

View File

@@ -17,12 +17,7 @@ impl Quadrilateral {
// Self([tl, tr,br, bl ])
// }
pub fn with_points(
tl: Point,
tr: Point,
br: Point,
bl: Point,
) -> Self {
pub fn with_points(tl: Point, tr: Point, br: Point, bl: Point) -> Self {
Self([tl, tr, br, bl])
}