• Home
  • Raw
  • Download

Lines Matching refs:PathKit

2 (function(PathKit){  argument
6 PathKit.onRuntimeInitialized = function() {
9 PathKit.SkPath.prototype.addPath = function() {
48 PathKit.SkPath.prototype.reverseAddPath = function() {
54 PathKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) {
59 PathKit.SkPath.prototype.arcTo = function(x1, y1, x2, y2, radius) {
64 PathKit.SkPath.prototype.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {
69 PathKit.SkPath.prototype.close = function() {
76 PathKit.SkPath.prototype.closePath = function() {
81 PathKit.SkPath.prototype.conicTo = function(x1, y1, x2, y2, w) {
86 PathKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {
91 PathKit.SkPath.prototype.dash = function(on, off, phase) {
99PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle…
104 PathKit.SkPath.prototype.lineTo = function(x, y) {
109 PathKit.SkPath.prototype.moveTo = function(x, y) {
114 PathKit.SkPath.prototype.op = function(otherPath, op) {
121 PathKit.SkPath.prototype.quadraticCurveTo = function(cpx, cpy, x, y) {
126 PathKit.SkPath.prototype.quadTo = function(cpx, cpy, x, y) {
131 PathKit.SkPath.prototype.rect = function(x, y, w, h) {
136 PathKit.SkPath.prototype.simplify = function() {
143 PathKit.SkPath.prototype.asWinding = function() {
150 PathKit.SkPath.prototype.isEmpty = function() {
154 PathKit.SkPath.prototype.stroke = function(opts) {
163 opts['cap'] = opts['cap'] || PathKit.StrokeCap.BUTT;
164 opts['join'] = opts['join'] || PathKit.StrokeJoin.MITER;
172 PathKit.SkPath.prototype.transform = function() {
192 PathKit.SkPath.prototype.trim = function(startT, stopT, isComplement) {