소스 검색

Added note about transposing

pull/299/head
raysan5 7 년 전
부모
커밋
43cb6414f6
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      src/raymath.h

+ 6
- 0
src/raymath.h 파일 보기

@ -413,6 +413,12 @@ RMDEF void VectorTransform(Vector3 *v, Matrix mat)
v->x = mat.m0*x + mat.m4*y + mat.m8*z + mat.m12;
v->y = mat.m1*x + mat.m5*y + mat.m9*z + mat.m13;
v->z = mat.m2*x + mat.m6*y + mat.m10*z + mat.m14;
/*
v->x = mat.m0*x + mat.m1*y + mat.m2*z + mat.m3;
v->y = mat.m4*x + mat.m5*y + mat.m6*z + mat.m7;
v->z = mat.m8*x + mat.m9*y + mat.m10*z + mat.m11;
*/
};
// Calculate linear interpolation between two vectors

불러오는 중...
취소
저장