From 50b1055e789a55ad3819d73ff640368d771e99f6 Mon Sep 17 00:00:00 2001 From: Lynix Date: Wed, 6 Mar 2013 13:41:58 +0100 Subject: [PATCH] Fixed spaces Former-commit-id: c0b17c175a2d0da81d28fd5287b72e8546ce210b --- include/Nazara/Math/EulerAngles.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/Nazara/Math/EulerAngles.inl b/include/Nazara/Math/EulerAngles.inl index 157e51dae..c340980c6 100644 --- a/include/Nazara/Math/EulerAngles.inl +++ b/include/Nazara/Math/EulerAngles.inl @@ -110,16 +110,16 @@ template NzEulerAngles NzEulerAngles::operator+(const NzEulerAngles& angles) const { return NzEulerAngles(pitch + angles.pitch, - yaw + angles.yaw, - roll + angles.roll); + yaw + angles.yaw, + roll + angles.roll); } template NzEulerAngles NzEulerAngles::operator-(const NzEulerAngles& angles) const { return NzEulerAngles(pitch - angles.pitch, - yaw - angles.yaw, - roll - angles.roll); + yaw - angles.yaw, + roll - angles.roll); } template