Lines Matching refs:PathKit
23 var PathKit = { variable
89 PathKit.SkPath.prototype.addPath = function() {};
90 PathKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) {};
91 PathKit.SkPath.prototype.arcTo = function(x1, y1, x2, y2, radius) {};
92 PathKit.SkPath.prototype.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {};
93 PathKit.SkPath.prototype.close = function() {};
94 PathKit.SkPath.prototype.closePath = function() {};
95 PathKit.SkPath.prototype.conicTo = function(x1, y1, x2, y2, w) {};
96 PathKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {};
97 PathKit.SkPath.prototype.dash = function(on, off, phase) {};
98 PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle,…
99 PathKit.SkPath.prototype.lineTo = function(x, y) {};
100 PathKit.SkPath.prototype.moveTo = function(x, y) {};
101 PathKit.SkPath.prototype.op = function(otherPath, op) {};
102 PathKit.SkPath.prototype.quadTo = function(x1, y1, x2, y2) {};
103 PathKit.SkPath.prototype.quadraticCurveTo = function(x1, y1, x2, y2) {};
104 PathKit.SkPath.prototype.rect = function(x, y, w, h) {};
105 PathKit.SkPath.prototype.simplify = function() {};
106 PathKit.SkPath.prototype.stroke = function(opts) {};
107 PathKit.SkPath.prototype.transform = function() {};
108 PathKit.SkPath.prototype.trim = function(startT, stopT, isComplement) {};