d_a_mirror done, d_a_ni 99% done (#2095)

* d_a_mirror done

* d_a_ni 99.9% done

* remove asm

* some d_a_ni doc

* progress
This commit is contained in:
TakaRikka
2024-03-13 23:28:01 -07:00
committed by GitHub
parent 42418393d5
commit e4d6e610f6
22 changed files with 3080 additions and 1866 deletions
+7
View File
@@ -52,6 +52,13 @@ struct cXyz : Vec {
y -= f;
z -= f;
}
void operator*=(const Vec& other) {
x *= other.x;
y *= other.y;
z *= other.z;
}
void operator-=(const Vec& other) { VECSubtract(this, &other, this); }
void operator+=(const Vec& other) { VECAdd(this, &other, this); }
void operator*=(f32 scale) { VECScale(this, this, scale); }