Lines Matching refs:strokeWidth

7516                    strokeWidth: this.width,
8452 strokeWidth = target.stroke ? target.strokeWidth : 0;
8454 transform.newScaleX = localMouse.x / (target.width + strokeWidth / 2);
8455 transform.newScaleY = localMouse.y / (target.height + strokeWidth / 2);
8489 strokeWidth = target.stroke ? target.strokeWidth : 0,
8490 lastDist = (target.height + (strokeWidth / 2)) * transform.original.scaleY +
8491 (target.width + (strokeWidth / 2)) * transform.original.scaleX;
10982 strokeWidth: 1,
11271 strokeWidth: toFixed(this.strokeWidth, NUM_FRACTION_DIGITS), property in AnonymousFunction064b60f112d00.object
11490 ctx.lineWidth = this.strokeWidth;
11604 if (!this.stroke || this.strokeWidth === 0) {
12032 strokeWidth = this.stroke ? this.strokeWidth : 0;
12035 cx = point.x + (this.getWidth() + strokeWidth * this.scaleX) / 2;
12038 cx = point.x - (this.getWidth() + strokeWidth * this.scaleX) / 2;
12042 cy = point.y + (this.getHeight() + strokeWidth * this.scaleY) / 2;
12045 cy = point.y - (this.getHeight() + strokeWidth * this.scaleY) / 2;
12062 strokeWidth = this.stroke ? this.strokeWidth : 0;
12066 x = center.x - (this.getWidth() + strokeWidth * this.scaleX) / 2;
12069 x = center.x + (this.getWidth() + strokeWidth * this.scaleX) / 2;
12072 y = center.y - (this.getHeight() + strokeWidth * this.scaleY) / 2;
12075 y = center.y + (this.getHeight() + strokeWidth * this.scaleY) / 2;
12120 strokeWidth = this.stroke ? this.strokeWidth : 0,
12125 x = center.x - (this.getWidth() + strokeWidth * this.scaleX) / 2;
12128 x = center.x + (this.getWidth() + strokeWidth * this.scaleX) / 2;
12135 y = center.y - (this.getHeight() + strokeWidth * this.scaleY) / 2;
12138 y = center.y + (this.getHeight() + strokeWidth * this.scaleY) / 2;
12743 strokeWidth = this.strokeWidth ? this.strokeWidth : '0',
12755 'stroke-width: ', strokeWidth, '; ',
13000 strokeWidth = this.strokeWidth,
13011 w = strokeWidth;
13014 h = strokeWidth;
13017 w += (w < 0 ? -strokeWidth : strokeWidth);
13020 h += (h < 0 ? -strokeWidth : strokeWidth);
13635 cp.x - this.strokeWidth / 2,
13636 cp.y - this.strokeWidth / 2
13648 ctx.lineWidth = this.strokeWidth;
16109 height = path.height + path.strokeWidth;
16110 width = path.width + path.strokeWidth;
19374 strokeWidth: true,
19864 if ((!this.stroke || this.strokeWidth === 0) && !this._skipFillStrokeCheck) {
20772 strokeWidth: style && style.strokeWidth || this.strokeWidth
21011 …if (method === 'strokeText' && ((this.stroke && this.strokeWidth > 0) || this.skipFillStrokeCheck)…
21080 prevStyle.strokeWidth !== thisStyle.strokeWidth
21266 ctx.lineWidth = styleDeclaration.strokeWidth || this.strokeWidth;