Lines Matching refs:coords

989   fabric.util.drawArc = function(ctx, fx, fy, coords) {  argument
990 var rx = coords[0],
991 ry = coords[1],
992 rot = coords[2],
993 large = coords[3],
994 sweep = coords[4],
995 tx = coords[5],
996 ty = coords[6],
4961 var coords = { };
4966 coords = { class in AnonymousFunction064b60f12a00
4967 x1: options.coords.x1 || 0,
4968 y1: options.coords.y1 || 0,
4969 x2: options.coords.x2 || 0,
4970 y2: options.coords.y2 || 0
4974 coords.r1 = options.coords.r1 || 0;
4975 coords.r2 = options.coords.r2 || 0;
4977 this.coords = coords;
5010 coords: this.coords,
5025 var coords = fabric.util.object.clone(this.coords),
5034 for (var prop in coords) {
5036 coords[prop] += this.offsetX - object.width / 2;
5039 coords[prop] += this.offsetY - object.height / 2;
5054 ' x1="', coords.x1,
5055 '" y1="', coords.y1,
5056 '" x2="', coords.x2,
5057 '" y2="', coords.y2,
5067 ' cx="', coords.x2,
5068 '" cy="', coords.y2,
5069 '" r="', coords.r2,
5070 '" fx="', coords.x1,
5071 '" fy="', coords.y1,
5101 var gradient, prop, coords = fabric.util.object.clone(this.coords);
5108 for (prop in coords) {
5110 coords[prop] += -this.offsetX + object.width / 2;
5113 coords[prop] += -this.offsetY + object.height / 2;
5119 for (prop in coords) {
5121 coords[prop] -= object.width / 2;
5124 coords[prop] -= object.height / 2;
5131 coords.x1, coords.y1, coords.x2, coords.y2);
5135 coords.x1, coords.y1, coords.r1, coords.x2, coords.y2, coords.r2);
5206 coords = { }, ellipseMatrix;
5209 coords = getLinearCoords(el);
5212 coords = getRadialCoords(el);
5219 ellipseMatrix = _convertPercentUnitsToValues(instance, coords, gradientUnits);
5223 coords: coords,
5245 _convertPercentUnitsToValues(obj, options.coords, 'userSpaceOnUse');
11797 gradient.coords = { class in gradient
11805 gradient.coords.r1 = options.r1;
11806 gradient.coords.r2 = options.r2;
12598 coords = this.getCenterPoint(),
12600 _tl = new fabric.Point(coords.x - offsetX, coords.y - offsetY),
12967 var coords = this.oCoords,
12974 for (var point in coords) {
12975 x = coords[point].x;
12976 y = coords[point].y;
12977 coords[point].corner = {
15607 coords = [ ],
15618 coords.length = 0;
15621 coords.push(match[0]);
15626 for (var j = 0, jlen = coords.length; j < jlen; j++) {
15627 parsed = parseFloat(coords[j]);