mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-08-28 22:08:54 -04:00
Prebuilt module for commit a7d259bfc0
This commit is contained in:
parent
983bdf6543
commit
958adff5df
45 changed files with 104 additions and 55 deletions
49
CHANGELOG.md
49
CHANGELOG.md
|
@ -1,5 +1,54 @@
|
|||
# Change Log
|
||||
|
||||
## `0.10.4`
|
||||
|
||||
### Changed
|
||||
- Separate `paper` module on NPM into: `paper`, `paper-jsdom` and
|
||||
`paper-jsdom-canvas` (#1252):
|
||||
- `paper` is the main library, and can be used directly in a browser
|
||||
context, e.g. a web browser or worker.
|
||||
- `paper-jsdom` is a shim module for Node.js, offering headless use with SVG
|
||||
importing / exporting.
|
||||
- `paper-jsdom-canvas` is a shim module for Node.js, offering rendering
|
||||
through Node Canvas.
|
||||
|
||||
### Added
|
||||
- PaperScript: Support newer, external versions of Acorn.js for PaperScript
|
||||
parsing, opening the doors to ES 2015 (#1183, #1275).
|
||||
- Hit Tests: Implement `options.position` to hit `Item#position` (#1249).
|
||||
- Split `Item#copyTo()` into `#addTo()` and `#copyTo()`.
|
||||
|
||||
### Fixed
|
||||
- Intersections: Bring back special handling of curve end-points (#1284).
|
||||
- Intersections: Correctly handle `Item#applyMatrix = false` (#1289).
|
||||
- Boolean: Bring back on-path winding handling (#1281).
|
||||
- Boolean: Pass on options in `PathItem#subtract(path, options)` (#1221).
|
||||
- Boolean: Implement `options.trace` as a way to perform boolean operations on
|
||||
the strokes / traces instead of the fills / areas of the involved paths
|
||||
(#1221).
|
||||
- Boolean: Always return `CompoundPath items (#1221).
|
||||
- Style: Fix handling of gradient matrices when `Item#applyMatrix = false`
|
||||
(#1238).
|
||||
- Style: Prevent cleaning pre-existing styles when setting `Item#style` to an
|
||||
object (#1277).
|
||||
- Mouse Events: Only handle dragItem if the hitItem responds to `mousedrag`
|
||||
events (#1247, #1286).
|
||||
- Bounds: Clear parent's bounds cache when item's visibility changes (#1248).
|
||||
- Bounds: Fix calculation of internal bounds with children and
|
||||
`Item#applyMatrix = false` (#1250).
|
||||
- Hit-Tests: Fix issue with non-invertible matrices ( #1271).
|
||||
- SVG Import: Improve handling of sizes in percent (#1242).
|
||||
- Rectangle: Improve handling of dimension properties, dealing better with
|
||||
`left` / `top` / `right` / `bottom` / `center` values (#1147).
|
||||
- Scene Graph: Do not allow inserting same item as child multiple times.
|
||||
- Path: Fix handling of `insert = false` in `new Path.Constructor()`
|
||||
initialization (#1305).
|
||||
- PaperScript: Fix positive unary operator.
|
||||
- Docs: Fix parameter sequence in Matrix constructor (#1273).
|
||||
- Docs: Add documentation for options.bound and options.matrix in `#exportSVG()`
|
||||
(#1254).
|
||||
- Docs: Fix wrong `@link` references to bean properties.
|
||||
|
||||
## `0.10.3`
|
||||
|
||||
### Changed
|
||||
|
|
6
dist/docs/assets/js/paper.js
vendored
6
dist/docs/assets/js/paper.js
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Paper.js v0.10.3-develop - The Swiss Army Knife of Vector Graphics Scripting.
|
||||
* Paper.js v0.10.4-develop - The Swiss Army Knife of Vector Graphics Scripting.
|
||||
* http://paperjs.org/
|
||||
*
|
||||
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
|
||||
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Wed Apr 19 19:53:39 2017 +0200
|
||||
* Date: Wed Apr 19 19:55:34 2017 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -769,7 +769,7 @@ var PaperScope = Base.extend({
|
|||
}
|
||||
},
|
||||
|
||||
version: "0.10.3-develop",
|
||||
version: "0.10.4-develop",
|
||||
|
||||
getView: function() {
|
||||
var project = this.project;
|
||||
|
|
2
dist/docs/classes/Color.html
vendored
2
dist/docs/classes/Color.html
vendored
|
@ -2043,7 +2043,7 @@ console.log(result); // { red: 0, blue: 0, green: 1 }</code></pre>
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/CompoundPath.html
vendored
2
dist/docs/classes/CompoundPath.html
vendored
|
@ -8471,7 +8471,7 @@ path.smooth();
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Curve.html
vendored
2
dist/docs/classes/Curve.html
vendored
|
@ -2273,7 +2273,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/CurveLocation.html
vendored
2
dist/docs/classes/CurveLocation.html
vendored
|
@ -663,7 +663,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Event.html
vendored
2
dist/docs/classes/Event.html
vendored
|
@ -167,7 +167,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Gradient.html
vendored
2
dist/docs/classes/Gradient.html
vendored
|
@ -231,7 +231,7 @@ path.fillColor = {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/GradientStop.html
vendored
2
dist/docs/classes/GradientStop.html
vendored
|
@ -264,7 +264,7 @@ function onFrame(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Group.html
vendored
2
dist/docs/classes/Group.html
vendored
|
@ -6468,7 +6468,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/HitResult.html
vendored
2
dist/docs/classes/HitResult.html
vendored
|
@ -230,7 +230,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Item.html
vendored
2
dist/docs/classes/Item.html
vendored
|
@ -6078,7 +6078,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Key.html
vendored
2
dist/docs/classes/Key.html
vendored
|
@ -130,7 +130,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/KeyEvent.html
vendored
2
dist/docs/classes/KeyEvent.html
vendored
|
@ -299,7 +299,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Layer.html
vendored
2
dist/docs/classes/Layer.html
vendored
|
@ -6454,7 +6454,7 @@ function onFrame(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Line.html
vendored
2
dist/docs/classes/Line.html
vendored
|
@ -383,7 +383,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Matrix.html
vendored
2
dist/docs/classes/Matrix.html
vendored
|
@ -1703,7 +1703,7 @@ Array of <tt>Number</tt>s
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/MouseEvent.html
vendored
2
dist/docs/classes/MouseEvent.html
vendored
|
@ -346,7 +346,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/PaperScope.html
vendored
2
dist/docs/classes/PaperScope.html
vendored
|
@ -438,7 +438,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/PaperScript.html
vendored
2
dist/docs/classes/PaperScript.html
vendored
|
@ -189,7 +189,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Path.html
vendored
2
dist/docs/classes/Path.html
vendored
|
@ -11325,7 +11325,7 @@ path.smooth();
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/PathItem.html
vendored
2
dist/docs/classes/PathItem.html
vendored
|
@ -8233,7 +8233,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Point.html
vendored
2
dist/docs/classes/Point.html
vendored
|
@ -2668,7 +2668,7 @@ var point = maxPoint * randomPoint;</code></pre>
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/PointText.html
vendored
2
dist/docs/classes/PointText.html
vendored
|
@ -6664,7 +6664,7 @@ function onMouseMove(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Project.html
vendored
2
dist/docs/classes/Project.html
vendored
|
@ -1286,7 +1286,7 @@ for (var i = 0; i < items.length; i++) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Raster.html
vendored
2
dist/docs/classes/Raster.html
vendored
|
@ -7233,7 +7233,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Rectangle.html
vendored
2
dist/docs/classes/Rectangle.html
vendored
|
@ -1558,7 +1558,7 @@ intersectionPath.fillColor = 'red';
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Segment.html
vendored
2
dist/docs/classes/Segment.html
vendored
|
@ -901,7 +901,7 @@ path.segments[2].selected = true;
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Shape.html
vendored
2
dist/docs/classes/Shape.html
vendored
|
@ -6967,7 +6967,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Size.html
vendored
2
dist/docs/classes/Size.html
vendored
|
@ -1784,7 +1784,7 @@ var size = maxSize * randomSize;</code></pre>
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Style.html
vendored
2
dist/docs/classes/Style.html
vendored
|
@ -910,7 +910,7 @@ var circle = new Path.Circle({
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/SymbolDefinition.html
vendored
2
dist/docs/classes/SymbolDefinition.html
vendored
|
@ -302,7 +302,7 @@ for (var i = 0; i < 100; i++) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/SymbolItem.html
vendored
2
dist/docs/classes/SymbolItem.html
vendored
|
@ -6359,7 +6359,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/TextItem.html
vendored
2
dist/docs/classes/TextItem.html
vendored
|
@ -6473,7 +6473,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/Tool.html
vendored
2
dist/docs/classes/Tool.html
vendored
|
@ -752,7 +752,7 @@ tool.onKeyDown = function(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/ToolEvent.html
vendored
2
dist/docs/classes/ToolEvent.html
vendored
|
@ -437,7 +437,7 @@ function onMouseUp(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/View.html
vendored
2
dist/docs/classes/View.html
vendored
|
@ -1763,7 +1763,7 @@ function onMouseDown(event) {
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
2
dist/docs/classes/global.html
vendored
2
dist/docs/classes/global.html
vendored
|
@ -414,7 +414,7 @@
|
|||
|
||||
<!-- =========================== copyright notice ========================== -->
|
||||
<p class="footer">
|
||||
Paper.js v0.10.3 (develop)<br>
|
||||
Paper.js v0.10.4 (develop)<br>
|
||||
Copyright © 2011—2017 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
|
||||
<div class="content-end"></div>
|
||||
|
||||
|
|
4
dist/docs/classes/index.html
vendored
4
dist/docs/classes/index.html
vendored
|
@ -2,13 +2,13 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Paper.js v0.10.3 (develop)</title>
|
||||
<title>Paper.js v0.10.4 (develop)</title>
|
||||
<base target="class-frame">
|
||||
<link href="../assets/css/docs.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
<body class="reference">
|
||||
<div class="reference-index">
|
||||
<h1>Paper.js<span class="version">0.10.3 (develop)</span></h1>
|
||||
<h1>Paper.js<span class="version">0.10.4 (develop)</span></h1>
|
||||
<ul class="reference-classes"><li><a href="../classes/global.html">Global Scope</a></li>
|
||||
<li>
|
||||
<h2>Basic Types</h2>
|
||||
|
|
2
dist/docs/index.html
vendored
2
dist/docs/index.html
vendored
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Paper.js v0.10.3 (develop)</title>
|
||||
<title>Paper.js v0.10.4 (develop)</title>
|
||||
</head>
|
||||
<frameset cols="230,*">
|
||||
<frame src="classes/index.html" name="packageListFrame" title="All Packages">
|
||||
|
|
6
dist/paper-core.js
vendored
6
dist/paper-core.js
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Paper.js v0.10.3-develop - The Swiss Army Knife of Vector Graphics Scripting.
|
||||
* Paper.js v0.10.4-develop - The Swiss Army Knife of Vector Graphics Scripting.
|
||||
* http://paperjs.org/
|
||||
*
|
||||
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
|
||||
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Wed Apr 19 19:53:39 2017 +0200
|
||||
* Date: Wed Apr 19 19:55:34 2017 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -769,7 +769,7 @@ var PaperScope = Base.extend({
|
|||
}
|
||||
},
|
||||
|
||||
version: "0.10.3-develop",
|
||||
version: "0.10.4-develop",
|
||||
|
||||
getView: function() {
|
||||
var project = this.project;
|
||||
|
|
6
dist/paper-core.min.js
vendored
6
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
6
dist/paper-full.js
vendored
6
dist/paper-full.js
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Paper.js v0.10.3-develop - The Swiss Army Knife of Vector Graphics Scripting.
|
||||
* Paper.js v0.10.4-develop - The Swiss Army Knife of Vector Graphics Scripting.
|
||||
* http://paperjs.org/
|
||||
*
|
||||
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
|
||||
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Wed Apr 19 19:53:39 2017 +0200
|
||||
* Date: Wed Apr 19 19:55:34 2017 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -769,7 +769,7 @@ var PaperScope = Base.extend({
|
|||
}
|
||||
},
|
||||
|
||||
version: "0.10.3-develop",
|
||||
version: "0.10.4-develop",
|
||||
|
||||
getView: function() {
|
||||
var project = this.project;
|
||||
|
|
6
dist/paper-full.min.js
vendored
6
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "paper",
|
||||
"version": "0.10.3",
|
||||
"version": "0.10.4",
|
||||
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
||||
"license": "MIT",
|
||||
"homepage": "http://paperjs.org",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue