appease the clang beasts

This commit is contained in:
ThePhD 2019-09-01 09:06:49 -04:00
parent 9294afc082
commit 29c03ea5cf
No known key found for this signature in database
GPG Key ID: 1509DB1C0F702BFA

View File

@ -43,6 +43,12 @@ namespace zm {
#pragma warning(pop)
#endif
vec3() : x(0), y(0), z(0) {
}
vec3(float x_, float y_, float z_) : x(x_), y(y_), z(z_) {
}
constexpr float* data() {
return elements;
}