Jürg Lehni
3263b91708
Start implementing mouse events on view.
...
Work in progress...
2013-12-06 22:26:48 +01:00
Jürg Lehni
0bf863d1fa
Remove ill-named Matrix properties and replace with standardized a, c, b, d, tx, ty.
2013-12-06 22:26:21 +01:00
Jürg Lehni
2cfa329fa6
Completely rework event handling on view and tools.
...
Fixes multiple issues on iOS:
- mousedown events were sometimes fired twice.,
- the presence of mousedown handlers broke scrolling.
Closes #266 .
2013-12-06 21:49:44 +01:00
Jürg Lehni
0797202b22
Fix and improve Color documentation.
2013-12-06 20:18:47 +01:00
Jürg Lehni
fb493959d0
Fix faulty Color documentation.
2013-12-06 19:50:51 +01:00
Jürg Lehni
a50adb1020
Implement constructors for Path and CompoundPath that can handle SVG-style path-data.
2013-12-06 18:09:44 +01:00
Jürg Lehni
41fa3b24e7
Only allow the installation of one onEventType handler at a time.
...
For more, use #attach() / #detach()
2013-12-06 14:04:03 +01:00
Jürg Lehni
7e9989c6b9
Improve comment about globalMatrix.isInvertible() check.
2013-12-06 13:41:57 +01:00
Jürg Lehni
92590b160c
Implement Canvas Path caching again using Context#currentPath.
2013-12-06 12:49:46 +01:00
Jürg Lehni
ece14f0151
Fix Tadpoles example.
2013-12-06 03:16:33 +01:00
Jürg Lehni
1e57031811
Do not set insert: false for the root of the imported JSON.
2013-12-06 03:16:06 +01:00
Jürg Lehni
ee7fd8cdbe
Use double underscores to avoid clashes between math operators and 'private' methods.
...
Path already defines a #_add() method...
2013-12-05 21:11:12 +01:00
Jürg Lehni
6d5e4329c1
Remove legacy browser code since we're not supporting IE8 and below.
2013-12-04 21:04:46 +01:00
Jürg Lehni
550749d057
Avoid issues with _matrix being undefined when items are created and added in a certain sequence.
...
Closes #279 .
2013-12-03 23:14:34 +01:00
Jürg Lehni
fc02c58ddb
Implement asynchronously loading Rasters from disk and remote locations for Node.js
...
Closes #328 .
2013-12-03 23:07:54 +01:00
Jürg Lehni
c423fcda39
Only handle and fire mousemove events when the user's either dragging or moving the mouse within the view.
...
Fixes #352 .
2013-12-03 22:25:04 +01:00
Jürg Lehni
5f24bf8da5
Implement Rectangle#getArea() and use it in reorientPath()
2013-12-03 21:54:36 +01:00
Jürg Lehni
4926e2c8da
Fix Array#sort() call in reorientPath(path) for IE.
...
IE expects integer values in the compare function, not boolean. Closes #350 again.
2013-12-03 21:49:49 +01:00
Jürg Lehni
988dbc52dc
Use latest version of Straps.js
2013-12-02 14:44:40 +01:00
Jürg Lehni
88a4c64172
No need for generics in Base.
2013-12-02 14:42:27 +01:00
Jürg Lehni
59b7bf4cbf
One more fix in publish.sh
2013-12-02 10:08:18 +01:00
Jürg Lehni
4caafd4623
Bump version to v0.9.15
2013-12-02 10:00:44 +01:00
Jürg Lehni
b5b75dfce4
Clean-up Numerical code.
2013-12-01 23:54:52 +01:00
Jürg Lehni
448d8d9b99
Clean-up bool-fix code.
2013-12-01 23:48:59 +01:00
Jürg Lehni
971268cd72
Merge remote-tracking branch 'origin/master' into bool-fix
2013-12-01 23:28:29 +01:00
Jürg Lehni
6b448ad320
Fix more edge cases in #contains().
...
This should fix issue #346 for good.
2013-12-01 23:13:11 +01:00
Jürg Lehni
09bc8805a2
Fix #353 properly this time.
2013-11-30 22:11:12 +01:00
hkrish
b625ec5b6d
Merge branch 'master' into bool-fix
...
* master: (127 commits)
Fix edge cases in Curve._getWinding()
Copy over parent style in Item#reduce().
Fire key-up events for all currently pressed keys.
Improve and streamline key-handling logic.
Use renamed __options object in build script too.
Correctly apply matrices to Raster items in #importSVG()
Support passing DOM element IDs in calls to #importSVG()
Update to latest Prepro.js and switch from global options object to __options, to avoid name clashes.
Make directly setting view.onFrame work again.
Update to latest Straps.js and remove unnecessary isArray argument in Base.each()
Add missing DOCS comments.
Fix issue where exceptions in onFrame handlers block future animations.
Fix issue with JSON import.
Add Node JSONtoPDF example.
Implement Item#data cloning.
Remove unnecessary Color#clone() since it's doing the same as Base#clone() now.
Remove Base.merge() and use a new Straps.js feature instead.
Improve build script to include dist file in paperjs.org website.
Bump version to v0.9.14
Fix setting #radius on Shape.Circle.
...
2013-11-30 14:50:18 +01:00
Jürg Lehni
dfc0886a8b
Fix edge cases in Curve._getWinding()
...
Use same rules for lines as for curves, exclude end points of lines. Closes #346 .
2013-11-30 14:21:47 +01:00
Jürg Lehni
dcad9d44ed
Copy over parent style in Item#reduce().
...
Only really needed for CompoundPath...
2013-11-30 14:02:54 +01:00
Jürg Lehni
fe1035da41
Fire key-up events for all currently pressed keys.
...
Closes #353 .
2013-11-29 23:44:27 +01:00
Jürg Lehni
3c22d37650
Improve and streamline key-handling logic.
...
Moving most logic into the private handleKey() function.
2013-11-29 23:43:40 +01:00
Jürg Lehni
865c304411
Use renamed __options object in build script too.
2013-11-29 23:06:51 +01:00
Jürg Lehni
3a10974612
Correctly apply matrices to Raster items in #importSVG()
...
Closes #337 .
2013-11-29 23:06:04 +01:00
Jürg Lehni
0440adb575
Support passing DOM element IDs in calls to #importSVG()
2013-11-29 23:04:05 +01:00
Jürg Lehni
93d10983ee
Update to latest Prepro.js and switch from global options object to __options, to avoid name clashes.
2013-11-29 20:26:38 +01:00
Jürg Lehni
aec19b9494
Make directly setting view.onFrame work again.
2013-11-29 20:03:52 +01:00
Jürg Lehni
79caf66a23
Update to latest Straps.js and remove unnecessary isArray argument in Base.each()
2013-11-29 19:53:48 +01:00
Jürg Lehni
1149399690
Add missing DOCS comments.
2013-11-29 18:50:04 +01:00
Jürg Lehni
0e5483c03f
Fix issue where exceptions in onFrame handlers block future animations.
2013-11-29 18:49:51 +01:00
Jürg Lehni
5f7dbfb1ab
Fix issue with JSON import.
2013-11-29 12:18:55 +01:00
Jürg Lehni
c08fd44101
Add Node JSONtoPDF example.
2013-11-29 12:17:59 +01:00
Jürg Lehni
7e65426158
Implement Item#data cloning.
...
Closes #340 .
2013-11-28 22:27:14 +01:00
Jürg Lehni
91a5bb9f88
Remove unnecessary Color#clone() since it's doing the same as Base#clone() now.
2013-11-28 22:24:29 +01:00
Jürg Lehni
593e0d8d7f
Remove Base.merge() and use a new Straps.js feature instead.
...
A more clever Base() constructor that allows merging.
2013-11-28 22:20:00 +01:00
Jürg Lehni
2d38c9220d
Improve build script to include dist file in paperjs.org website.
2013-11-28 22:18:43 +01:00
Jürg Lehni
afb326d16e
Bump version to v0.9.14
2013-11-28 19:46:12 +01:00
Jürg Lehni
c0e8285c07
Fix setting #radius on Shape.Circle.
2013-11-28 18:03:41 +01:00
Jürg Lehni
bfd65fe75d
Fix issue with keydown for space.
...
KeyEvent#character contained the wrong charCode (0)
2013-11-28 16:49:05 +01:00
Jürg Lehni
d9eaa3f631
Fix issue with starting and stopping item based animations.
2013-11-28 15:48:43 +01:00