matrix.resize4x4() was incorrectly allocating a array of pointers using the wrong cast -- sizeof(float) instead of sizeof(float *). Worked fine on 32-bit systems but caused a crash on AMD64. Discovered by a student in one of my classes (kudos, Joe).
matrix.resize4x4() was incorrectly allocating a array of pointers using the wrong cast -- sizeof(float) instead of sizeof(float *). Worked fine on 32-bit systems but caused a crash on AMD64. Discovered by a student in one of my classes (kudos, Joe).