From eab619bd5cfc520d3962097d16582eae6977d6dc Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 26 Oct 2023 21:05:34 +0200 Subject: style: increase max struct literal width to 36 --- engine/src/camera.rs | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'engine/src/camera.rs') diff --git a/engine/src/camera.rs b/engine/src/camera.rs index 9ab95e7..fab92f5 100644 --- a/engine/src/camera.rs +++ b/engine/src/camera.rs @@ -83,16 +83,9 @@ impl Camera pub(crate) fn new() -> Self { - let position = Vec3 { - x: 0.0, - y: 0.0, - z: 3.0, - }; - - Self { - position, - target: Vec3::default(), - } + let position = Vec3 { x: 0.0, y: 0.0, z: 3.0 }; + + Self { position, target: Vec3::default() } } pub(crate) fn as_matrix(&self) -> Matrix -- cgit v1.2.3-18-g5258