d_a_obj_junk_repairing OK (#27)

* d_a_obj_junk_repairing OK

* Fix rel_sieve with multi-file RELs
This commit is contained in:
robojumper
2024-09-15 20:54:45 +02:00
committed by GitHub
parent 63365331d8
commit 2f7ceff5b1
11 changed files with 210 additions and 64 deletions
+1
View File
@@ -9,6 +9,7 @@ namespace EGG {
struct Quatf : public Vector3f {
Quatf() {}
Quatf(f32 f, Vector3f v) : w(f), Vector3f(v) {}
Quatf(f32 f, f32 x, f32 y, f32 z) : w(f), Vector3f(Vector3f(x, y, z)) {}
~Quatf() {}
friend Quatf operator*(const Quatf &q, const Vector3f &vec) {