userdata changes; hanim fixes; support for reading old skins

This commit is contained in:
aap
2020-08-06 09:14:32 +02:00
parent 26a5502ee1
commit 171e737842
8 changed files with 115 additions and 35 deletions
+4 -2
View File
@@ -488,8 +488,10 @@ Matrix::lookAt(const V3d &dir, const V3d &up)
this->flags = TYPEORTHONORMAL;
}
/* For a row-major representation, this calculates src1 * src.
* For colum-major src2 * src1 */
/* For a row-major representation, this calculates src1 * src2.
* For column-major src2 * src1.
* i.e. a vector is first xformed by src1, then by src2
*/
void
Matrix::mult_(Matrix *dst, const Matrix *src1, const Matrix *src2)
{