Skip to content

Commit f81a2d3

Browse files
committed
This isnt matching
1 parent 6371ee1 commit f81a2d3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/SB/Core/x/xMath3.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -761,10 +761,6 @@ void xBoxUnion(xBox& a, const xBox& b, const xBox& c)
761761
a.lower.z = MIN(b.lower.z, c.lower.z);
762762
}
763763

764-
// Equivalent: regalloc(?)
765764
void xMat3x3LMulVec(xVec3* o, const xMat3x3* m, const xVec3* v)
766765
{
767-
o->x = (v->x * m->right.x) + (v->y * m->right.y) + (v->z * m->right.z);
768-
o->y = (m->up.x * v->x) + (m->up.y * v->y) + (m->up.z * v->z);
769-
o->z = (m->at.x * v->x) + (m->at.y * v->y) + (m->at.z * v->z);
770766
}

0 commit comments

Comments
 (0)