This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************************************ | |
Draw Shape Expression v1.02 | |
Description: Draws a parametric rectangle path | |
Author: Thomas Alberti <[email protected]> | |
************************************************************************************/ | |
function getMatrixComposite(tMatrix1, tMatrix2){ // Multiply matrices, 2x2 * 2x2 | |
let cMatrix = []; | |
for(let j = 0; j <= 1; j++) { | |
cMatrix[j] = []; |