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
This commit is contained in:
@@ -340,8 +340,7 @@ Transform2D Transform2D::interpolate_with(const Transform2D& p_transform, real_t
|
||||
|
||||
Transform2D::operator String() const {
|
||||
|
||||
//return String(String()+elements[0]+", "+elements[1]+", "+elements[2]);
|
||||
return String(); // @Todo
|
||||
return String(String() + elements[0] + ", " + elements[1] + ", " + elements[2]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user