mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-14 00:39:57 -04:00
Prebuilt module for commit c6bcf4351a
This commit is contained in:
parent
57cf3b1174
commit
c3de041457
5 changed files with 72 additions and 78 deletions
dist
40
dist/docs/assets/js/paper.js
vendored
40
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Feb 12 21:05:05 2016 +0100
|
||||
* Date: Fri Feb 12 21:22:30 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -4127,16 +4127,13 @@ new function() {
|
|||
}), {
|
||||
|
||||
_setStyles: function(ctx) {
|
||||
var style = this._style,
|
||||
fillColor = style.getFillColor(),
|
||||
strokeColor = style.getStrokeColor(),
|
||||
shadowColor = style.getShadowColor();
|
||||
if (fillColor)
|
||||
ctx.fillStyle = fillColor.toCanvasStyle(ctx);
|
||||
if (strokeColor) {
|
||||
var style = this._style;
|
||||
if (style.hasFill())
|
||||
ctx.fillStyle = style.getFillColor().toCanvasStyle(ctx);
|
||||
if (style.hasStroke()) {
|
||||
var strokeWidth = style.getStrokeWidth();
|
||||
if (strokeWidth > 0) {
|
||||
ctx.strokeStyle = strokeColor.toCanvasStyle(ctx);
|
||||
ctx.strokeStyle = style.getStrokeColor().toCanvasStyle(ctx);
|
||||
ctx.lineWidth = strokeWidth;
|
||||
var strokeJoin = style.getStrokeJoin(),
|
||||
strokeCap = style.getStrokeCap(),
|
||||
|
@ -4162,15 +4159,12 @@ new function() {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (shadowColor) {
|
||||
var blur = style.getShadowBlur(),
|
||||
offset = this.getShadowOffset();
|
||||
if (blur > 0 || !offset.isZero()) {
|
||||
ctx.shadowColor = shadowColor.toCanvasStyle(ctx);
|
||||
ctx.shadowBlur = blur;
|
||||
ctx.shadowOffsetX = offset.x;
|
||||
ctx.shadowOffsetY = offset.y;
|
||||
}
|
||||
if (style.hasShadow()) {
|
||||
var offset = this.getShadowOffset();
|
||||
ctx.shadowColor = style.getShadowColor().toCanvasStyle(ctx);
|
||||
ctx.shadowBlur = style.getShadowBlur();
|
||||
ctx.shadowOffsetX = offset.x;
|
||||
ctx.shadowOffsetY = offset.y;
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -11170,15 +11164,19 @@ var Style = Base.extend(new function() {
|
|||
},
|
||||
|
||||
hasFill: function() {
|
||||
return !!this.getFillColor();
|
||||
var color = this.getFillColor();
|
||||
return !!color && color.alpha > 0;
|
||||
},
|
||||
|
||||
hasStroke: function() {
|
||||
return !!this.getStrokeColor() && this.getStrokeWidth() > 0;
|
||||
var color = this.getStrokeColor();
|
||||
return !!color && color.alpha > 0 && this.getStrokeWidth() > 0;
|
||||
},
|
||||
|
||||
hasShadow: function() {
|
||||
return !!this.getShadowColor();
|
||||
var color = this.getShadowColor();
|
||||
return !!color && color.alpha > 0 && (this.getShadowBlur() > 0
|
||||
|| !this.getShadowOffset().isZero());
|
||||
},
|
||||
|
||||
getView: function() {
|
||||
|
|
40
dist/paper-core.js
vendored
40
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Feb 12 21:05:05 2016 +0100
|
||||
* Date: Fri Feb 12 21:22:30 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -4127,16 +4127,13 @@ new function() {
|
|||
}), {
|
||||
|
||||
_setStyles: function(ctx) {
|
||||
var style = this._style,
|
||||
fillColor = style.getFillColor(),
|
||||
strokeColor = style.getStrokeColor(),
|
||||
shadowColor = style.getShadowColor();
|
||||
if (fillColor)
|
||||
ctx.fillStyle = fillColor.toCanvasStyle(ctx);
|
||||
if (strokeColor) {
|
||||
var style = this._style;
|
||||
if (style.hasFill())
|
||||
ctx.fillStyle = style.getFillColor().toCanvasStyle(ctx);
|
||||
if (style.hasStroke()) {
|
||||
var strokeWidth = style.getStrokeWidth();
|
||||
if (strokeWidth > 0) {
|
||||
ctx.strokeStyle = strokeColor.toCanvasStyle(ctx);
|
||||
ctx.strokeStyle = style.getStrokeColor().toCanvasStyle(ctx);
|
||||
ctx.lineWidth = strokeWidth;
|
||||
var strokeJoin = style.getStrokeJoin(),
|
||||
strokeCap = style.getStrokeCap(),
|
||||
|
@ -4162,15 +4159,12 @@ new function() {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (shadowColor) {
|
||||
var blur = style.getShadowBlur(),
|
||||
offset = this.getShadowOffset();
|
||||
if (blur > 0 || !offset.isZero()) {
|
||||
ctx.shadowColor = shadowColor.toCanvasStyle(ctx);
|
||||
ctx.shadowBlur = blur;
|
||||
ctx.shadowOffsetX = offset.x;
|
||||
ctx.shadowOffsetY = offset.y;
|
||||
}
|
||||
if (style.hasShadow()) {
|
||||
var offset = this.getShadowOffset();
|
||||
ctx.shadowColor = style.getShadowColor().toCanvasStyle(ctx);
|
||||
ctx.shadowBlur = style.getShadowBlur();
|
||||
ctx.shadowOffsetX = offset.x;
|
||||
ctx.shadowOffsetY = offset.y;
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -11170,15 +11164,19 @@ var Style = Base.extend(new function() {
|
|||
},
|
||||
|
||||
hasFill: function() {
|
||||
return !!this.getFillColor();
|
||||
var color = this.getFillColor();
|
||||
return !!color && color.alpha > 0;
|
||||
},
|
||||
|
||||
hasStroke: function() {
|
||||
return !!this.getStrokeColor() && this.getStrokeWidth() > 0;
|
||||
var color = this.getStrokeColor();
|
||||
return !!color && color.alpha > 0 && this.getStrokeWidth() > 0;
|
||||
},
|
||||
|
||||
hasShadow: function() {
|
||||
return !!this.getShadowColor();
|
||||
var color = this.getShadowColor();
|
||||
return !!color && color.alpha > 0 && (this.getShadowBlur() > 0
|
||||
|| !this.getShadowOffset().isZero());
|
||||
},
|
||||
|
||||
getView: function() {
|
||||
|
|
16
dist/paper-core.min.js
vendored
16
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
40
dist/paper-full.js
vendored
40
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Feb 12 21:05:05 2016 +0100
|
||||
* Date: Fri Feb 12 21:22:30 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -4127,16 +4127,13 @@ new function() {
|
|||
}), {
|
||||
|
||||
_setStyles: function(ctx) {
|
||||
var style = this._style,
|
||||
fillColor = style.getFillColor(),
|
||||
strokeColor = style.getStrokeColor(),
|
||||
shadowColor = style.getShadowColor();
|
||||
if (fillColor)
|
||||
ctx.fillStyle = fillColor.toCanvasStyle(ctx);
|
||||
if (strokeColor) {
|
||||
var style = this._style;
|
||||
if (style.hasFill())
|
||||
ctx.fillStyle = style.getFillColor().toCanvasStyle(ctx);
|
||||
if (style.hasStroke()) {
|
||||
var strokeWidth = style.getStrokeWidth();
|
||||
if (strokeWidth > 0) {
|
||||
ctx.strokeStyle = strokeColor.toCanvasStyle(ctx);
|
||||
ctx.strokeStyle = style.getStrokeColor().toCanvasStyle(ctx);
|
||||
ctx.lineWidth = strokeWidth;
|
||||
var strokeJoin = style.getStrokeJoin(),
|
||||
strokeCap = style.getStrokeCap(),
|
||||
|
@ -4162,15 +4159,12 @@ new function() {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (shadowColor) {
|
||||
var blur = style.getShadowBlur(),
|
||||
offset = this.getShadowOffset();
|
||||
if (blur > 0 || !offset.isZero()) {
|
||||
ctx.shadowColor = shadowColor.toCanvasStyle(ctx);
|
||||
ctx.shadowBlur = blur;
|
||||
ctx.shadowOffsetX = offset.x;
|
||||
ctx.shadowOffsetY = offset.y;
|
||||
}
|
||||
if (style.hasShadow()) {
|
||||
var offset = this.getShadowOffset();
|
||||
ctx.shadowColor = style.getShadowColor().toCanvasStyle(ctx);
|
||||
ctx.shadowBlur = style.getShadowBlur();
|
||||
ctx.shadowOffsetX = offset.x;
|
||||
ctx.shadowOffsetY = offset.y;
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -11170,15 +11164,19 @@ var Style = Base.extend(new function() {
|
|||
},
|
||||
|
||||
hasFill: function() {
|
||||
return !!this.getFillColor();
|
||||
var color = this.getFillColor();
|
||||
return !!color && color.alpha > 0;
|
||||
},
|
||||
|
||||
hasStroke: function() {
|
||||
return !!this.getStrokeColor() && this.getStrokeWidth() > 0;
|
||||
var color = this.getStrokeColor();
|
||||
return !!color && color.alpha > 0 && this.getStrokeWidth() > 0;
|
||||
},
|
||||
|
||||
hasShadow: function() {
|
||||
return !!this.getShadowColor();
|
||||
var color = this.getShadowColor();
|
||||
return !!color && color.alpha > 0 && (this.getShadowBlur() > 0
|
||||
|| !this.getShadowOffset().isZero());
|
||||
},
|
||||
|
||||
getView: function() {
|
||||
|
|
14
dist/paper-full.min.js
vendored
14
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue