Я столкнулся с проблемой в моем проекте, которая связана с умножением матриц.Я должен умножить две матрицы вместе, одну из которых я сделал, а другую - как параметр.Тем не менее, он должен пройти тест на жасмин, и в настоящее время он не проходит из-за ошибки NaN.Любая помощь будет принята с благодарностью.Благодарю.Код моей матрицы:
class Matrix {
constructor(pX0, pX1, pX2, pY0, pY1, pY2, pZ0, pZ1, pZ2) {
this.Matrix = [
[pX0, pX1, pX2],
[pY0, pY1, pY2],
[pZ0, pZ1, pZ2]
];
}
getX0() {
return this.mX0;
}
setX0(pX0) {
this.mX0 = pX0;
}
getX1() {
return this.mX1;
}
setX1(pX1) {
this.mX1 = pX1;
}
getX2() {
return this.mX2;
}
setX2(pX2) {
this.mX2 = pX2;
}
getY0() {
return this.mY0;
}
setY0(pY0) {
this.mY0 = pY0;
}
getY1() {
return this.mY1;
}
setY1(pY1) {
this.mY1 = pY1;
}
getY2() {
return this.mY2;
}
setY2(pY2) {
this.mY2 = pY2;
}
getZ0() {
return this.mZ0;
}
setZ0(pZ0) {
this.mZ0 = pZ0;
}
getZ1() {
return this.mZ1;
}
setZ1(pZ1) {
this.mZ1 = pZ1;
}
getZ2() {
return this.mZ2;
}
setZ2(pZ2) {
this.mZ2 = pZ2;
}
getElement(pRow, pColumn) {
return this.Matrix[pRow][pColumn];
}
static createIdentity() {
return new Matrix(1, 0, 0, 0, 1, 0, 0, 0, 1);
}
static createTranslation(pTranslationVector) {
return new Matrix(1, 0, pTranslationVector.getX(), 0, 1, pTranslationVector.getY(), 0, 0, 1);
}
static createScale(pScaleVector) {
return new Matrix(pScaleVector.getX(), 0, 0, 0, pScaleVector.getY(), 0, 0, 0, 1);
}
static createRotation(pRotationScalar) {
return new Matrix(Math.cos(pRotationScalar), -Math.sin(pRotationScalar), 0, Math.sin(pRotationScalar), Math.cos(pRotationScalar), 0, 0, 0, 1);
}
multiply(pMatrix) {
return new Matrix(this.getX0 * pMatrix.getX0, this.getX1 * pMatrix.getY0, this.getX2 * pMatrix.getZ0, this.getY0 * pMatrix.getX1, this.getY1 * pMatrix.getY1, this.getY2 * pMatrix.getZ1, this.getZ0 * pMatrix.getX2, this.getZ1 * pMatrix.getY2, this.getZ2 * pMatrix.getZ2);
}
Тест, который он должен пройти:
describe("Multiply", function() {
var rotation, scaleVector, translationVector, translationMatrix,
scaleMatrix, rotationMatrix, scaleXTranslationMatrix, translationXScaleMatrix,
chainedMatrix;
rotation = Math.PI / 2;
rotationMatrix = Matrix.createRotation(rotation);
scaleVector = new Vector(2, 2, 1);
scaleMatrix = Matrix.createScale(scaleVector);
translationVector = new Vector(10, 20, 1);
translationMatrix = Matrix.createTranslation(translationVector);
describe("Scale X Translate", function() {
scaleXTranslationMatrix = scaleMatrix.multiply(translationMatrix);
it("Element (0,0) Set", function() {
expect(scaleXTranslationMatrix.getElement(0, 0)).toEqual(2);
});
it("Element (0,1) Set", function() {
expect(scaleXTranslationMatrix.getElement(0, 1)).toEqual(0);
});
it("Element (0,2) Set", function() {
expect(scaleXTranslationMatrix.getElement(0, 2)).toEqual(20);
});
it("Element (1,0) Set", function() {
expect(scaleXTranslationMatrix.getElement(1, 0)).toEqual(0);
});
it("Element (1,1) Set", function() {
expect(scaleXTranslationMatrix.getElement(1, 1)).toEqual(2);
});
it("Element (1,2) Set", function() {
expect(scaleXTranslationMatrix.getElement(1, 2)).toEqual(40);
});
it("Element (2,0) Set", function() {
expect(scaleXTranslationMatrix.getElement(2, 0)).toEqual(0);
});
it("Element (2,1) Set", function() {
expect(scaleXTranslationMatrix.getElement(2, 1)).toEqual(0);
});
it("Element (2,2) Set", function() {
expect(scaleXTranslationMatrix.getElement(2, 2)).toEqual(1);
});
});
describe("Translate X Scale", function() {
translationXScaleMatrix = translationMatrix.multiply(scaleMatrix);
it("Element (0,0) Set", function() {
expect(translationXScaleMatrix.getElement(0, 0)).toEqual(2);
});
it("Element (0,1) Set", function() {
expect(translationXScaleMatrix.getElement(0, 1)).toEqual(0);
});
it("Element (0,2) Set", function() {
expect(translationXScaleMatrix.getElement(0, 2)).toEqual(10);
});
it("Element (1,0) Set", function() {
expect(translationXScaleMatrix.getElement(1, 0)).toEqual(0);
});
it("Element (1,1) Set", function() {
expect(translationXScaleMatrix.getElement(1, 1)).toEqual(2);
});
it("Element (1,2) Set", function() {
expect(translationXScaleMatrix.getElement(1, 2)).toEqual(20);
});
it("Element (2,0) Set", function() {
expect(translationXScaleMatrix.getElement(2, 0)).toEqual(0);
});
it("Element (2,1) Set", function() {
expect(translationXScaleMatrix.getElement(2, 1)).toEqual(0);
});
it("Element (2,2) Set", function() {
expect(translationXScaleMatrix.getElement(2, 2)).toEqual(1);
});
});
describe("Chaining", function() {
var cosAngle, sinAngle;
cosAngle = Math.cos(Math.PI / 2);
sinAngle = Math.sin(Math.PI / 2);
chainedMatrix =
translationMatrix.multiply(scaleMatrix).multiply(rotationMatrix);
it("Element (0,0) Set", function() {
expect(chainedMatrix.getElement(0, 0)).toEqual(2 * cosAngle);
});
it("Element (0,1) Set", function() {
expect(chainedMatrix.getElement(0, 1)).toEqual(2 * -sinAngle);
});
it("Element (0,2) Set", function() {
expect(chainedMatrix.getElement(0, 2)).toEqual(10);
});
it("Element (1,0) Set", function() {
expect(chainedMatrix.getElement(1, 0)).toEqual(2 * sinAngle);
});
it("Element (1,1) Set", function() {
expect(chainedMatrix.getElement(1, 1)).toEqual(2 * cosAngle);
});
it("Element (1,2) Set", function() {
expect(chainedMatrix.getElement(1, 2)).toEqual(20);
});
it("Element (2,0) Set", function() {
expect(chainedMatrix.getElement(2, 0)).toEqual(0);
});
it("Element (2,1) Set", function() {
expect(chainedMatrix.getElement(2, 1)).toEqual(0);
});
it("Element (2,2) Set", function() {
expect(chainedMatrix.getElement(2, 2)).toEqual(1);
});
});
});
});
У меня нет идей, поэтому любая форма помощи будет отличной, спасибо.