Is there a native Javascript Matrix object? You know how theres a Date, Array, Object, is there a Matrix?
If not, which 3rd party library is best to use Matrices in Javascript?
Does anyone know of an open source Matrix function that rotates around a point? IE...
var myMatrix = {tx: 1, ty: 0, ...other matrix values};
var rotMatrix = rotate(myAngle, myMatrix);
var newRectPoint = {x: rotMatrix.tx, y: rotMatrix.ty};