matrix.mult(scaleMatrix);
needScale = false;
}
if (needRotation) {
N3Matrix4D rotationMatrix = new N3Matrix4D();
rotationMatrix.rotate(angle, rotation);
matrix.mult(rotationMatrix);
needRotation = false;
}
if (needTranslation) {
N3Matrix4D translationMatrix = new N3Matrix4D();