whatever
This commit is contained in:
parent
b671f32807
commit
f325b6c303
2 changed files with 9 additions and 1 deletions
|
|
@ -54,6 +54,14 @@ void GSMathAdd3(GSVector3 r, GSVector3 v0, GSVector3 v1) {
|
|||
void GSMathNormal3x3(GSVector3 r, GSVector3 v0, GSVector3 v1, GSVector3 v2) {
|
||||
GSVector3 t0, t1;
|
||||
|
||||
/**
|
||||
* this used to be:
|
||||
* (v1 - v0) * (v2 - v0)
|
||||
*
|
||||
* why do i have to do this now? i know it is because of +z front
|
||||
* but why?
|
||||
*/
|
||||
|
||||
GSMathSubtract3(t0, v1, v2);
|
||||
GSMathSubtract3(t1, v0, v2);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue