Removing usage of g.matrix, since g (group) does not have a member called matrix. (the test code would print undefined)

This commit is contained in:
uglycoyote
2017-04-04 12:59:24 -07:00
parent c0c9cd3d41
commit 13f59a2ae3
+1 -1
View File
@@ -337,6 +337,6 @@ window.onload=()=>{
var myInvertedMatrix = myMatrix.invert();
g.animate({ transform: myMatrix },3000, mina.bounce, function() { g.animate({ transform: myInvertedMatrix }, 3000, mina.bounce) } );
console.log( g.transform(), g.matrix, myMatrix.split() );
console.log( g.transform(), myMatrix.split() );
}
}