Lines Matching refs:stroke

2851         stroke: 'strokeOpacity',  property in colorAttributes
5572 if (object && (object.fill === this.color || object.stroke === this.color)) {
7475 ctx.stroke();
7515 stroke: this.color,
7943 path.stroke = new fabric.Pattern({
8452 strokeWidth = target.stroke ? target.strokeWidth : 0;
8489 strokeWidth = target.stroke ? target.strokeWidth : 0,
8660 ctx.stroke();
10975 stroke: null,
11205 if (options.stroke && options.stroke.source && !(options.stroke instanceof fabric.Pattern)) {
11206 this.set('stroke', new fabric.Pattern(options.stroke));
11270stroke: (this.stroke && this.stroke.toObject) ? this.stroke.toObject() : this.st… property in AnonymousFunction064b60f112d00.object
11489 if (this.stroke) {
11494 ctx.strokeStyle = this.stroke.toLive
11495 ? this.stroke.toLive(ctx, this)
11496 : this.stroke;
11604 if (!this.stroke || this.strokeWidth === 0) {
11621 ctx.stroke();
11624 if (this.stroke.gradientTransform) {
11625 var g = this.stroke.gradientTransform;
11628 this._stroke ? this._stroke(ctx) : ctx.stroke();
12032 strokeWidth = this.stroke ? this.strokeWidth : 0;
12062 strokeWidth = this.stroke ? this.strokeWidth : 0;
12120 strokeWidth = this.stroke ? this.strokeWidth : 0,
12739 stroke = this.stroke
12740 ? (this.stroke.toLive ? 'url(#SVGID_' + this.stroke.id + ')' : this.stroke)
12754 'stroke: ', stroke, '; ',
12831 if (this.stroke && this.stroke.toLive) {
12832 markup.push(this.stroke.toSVG(this, false));
13074 ctx.stroke();
13654 ctx.strokeStyle = this.stroke || ctx.fillStyle;
13655 this.stroke && this._renderStroke(ctx);
14971 if (this.stroke || this.strokeDashArray) {
17121 if (this.stroke || this.strokeDashArray) {
19373 stroke: true,
19605 stroke: null,
19864 if ((!this.stroke || this.strokeWidth === 0) && !this._skipFillStrokeCheck) {
20771 stroke: style && style.stroke || this.stroke,
21011 …if (method === 'strokeText' && ((this.stroke && this.strokeWidth > 0) || this.skipFillStrokeCheck)…
21033 var shouldStroke = decl.stroke || this.stroke,
21053 if (method === 'strokeText' && this.stroke) {
21079 prevStyle.stroke !== thisStyle.stroke ||
21260 if (styleDeclaration.stroke) {
21261 ctx.strokeStyle = (styleDeclaration.stroke && styleDeclaration.stroke.toLive)
21262 ? styleDeclaration.stroke.toLive(ctx, this)
21263 : styleDeclaration.stroke;
23236 stroke: this.stroke,