Lines Matching refs:matrix1
6726 let matrix1 = new drawing.Matrix();
6727 matrix1.setMatrix([2, 1, 3, 1, 2, 1, 3, 1, 2]);
6730 matrix1.preConcat(matrix2);
6766 let matrix1 = new drawing.Matrix();
6767 matrix1.setMatrix([2, 1, 3, 1, 2, 1, 3, 1, 2]);
6770 if (matrix1.isEqual(matrix2)) {
6771 console.info("matrix1 and matrix2 are equal.");
6773 console.info("matrix1 and matrix2 are not equal.");
6810 let matrix1 = new drawing.Matrix();
6811 matrix1.setMatrix([2, 1, 3, 1, 2, 1, 3, 1, 2]);
6814 if (matrix1.invert(matrix2)) {
6815 console.info("matrix1 is invertible and matrix2 is set as an inverse matrix of the matrix1.");
6817 console.info("matrix1 is not invertible and matrix2 is not changed.");