summary refs log tree commit diff
path: root/src/Math/Rotation.hpp
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2023-07-07 23:05:14 +0200
committerMel <einebeere@gmail.com>2023-07-07 23:14:59 +0200
commit129f2e421e16bd008cdca8713cc91f67d103d94e (patch)
treea4d3e1005c57591b44fd57be4c1b00441512e36d /src/Math/Rotation.hpp
parentf1fc192ddc4c739fa8b4b376c759b7d3218a34eb (diff)
downloadmeowcraft-129f2e421e16bd008cdca8713cc91f67d103d94e.tar.zst
meowcraft-129f2e421e16bd008cdca8713cc91f67d103d94e.zip
Fix minor quality issues
Diffstat (limited to 'src/Math/Rotation.hpp')
-rw-r--r--src/Math/Rotation.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/Math/Rotation.hpp b/src/Math/Rotation.hpp
index 0c5c606..a3420ed 100644
--- a/src/Math/Rotation.hpp
+++ b/src/Math/Rotation.hpp
@@ -4,16 +4,15 @@
 #include "Vector.hpp"
 
 struct Rotation {
-public:
-    Rotation() : vector{} {};
+    Rotation() = default;
 
-    Rotation(Vector<3> vector) : vector{ wrap(vector) } {};
+    Rotation(Vector<3> vector) : vector{ wrap(vector) } {}
 
-    Rotation(float angles[3]) : Rotation(angles[0], angles[1], angles[2]) {};
+    explicit Rotation(float angles[3]) : Rotation(angles[0], angles[1], angles[2]) {}
 
     Rotation(float pitch, float yaw, float roll) {
         vector = wrap({pitch, yaw, roll });
-    };
+    }
 
     Rotation operator+(Rotation other) const {
         return wrap(vector + other.vector);