Lines Matching defs:Matrix
10 CanvasKit.Matrix = {};
51 CanvasKit.Matrix.identity = function() {
57 CanvasKit.Matrix.invert = function(m) {
81 CanvasKit.Matrix.mapPoints = function(matrix, ptArr) {
144 // Matrix multiplication is associative but not commutative. the order of the arguments
146 CanvasKit.Matrix.multiply = function() {
153 CanvasKit.Matrix.rotated = function(radians, px, py) {
165 CanvasKit.Matrix.scaled = function(sx, sy, px, py) {
172 CanvasKit.Matrix.skewed = function(kx, ky, px, py) {
179 CanvasKit.Matrix.translated = function(dx, dy) {
418 throw 'Matrix not invertible';