From 4f4bb8deff008861ced55b14fcd8b8f4d3a697e8 Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Tue, 23 Jan 2018 00:24:23 +0100 Subject: String and math fixes - Added missing static String constructors - Implemented String operator for math types - Added XYZ and YXZ euler angles methods - Fixed wrong det checks in Basis - Fixed operator Quat in Basis --- src/core/Vector3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/Vector3.cpp') diff --git a/src/core/Vector3.cpp b/src/core/Vector3.cpp index 7e0f2ee..a22bdc0 100644 --- a/src/core/Vector3.cpp +++ b/src/core/Vector3.cpp @@ -327,7 +327,7 @@ Vector3 Vector3::snapped(const float by) Vector3::operator String() const { - return String(); // @Todo + return String::num(x) + ", " + String::num(y) + ", " + String::num(z); } -- cgit v1.2.3