2013-01-28 21:03:27 -05:00
|
|
|
/*
|
|
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
|
|
* http://paperjs.org/
|
|
|
|
*
|
2014-01-03 19:47:16 -05:00
|
|
|
* Copyright (c) 2011 - 2014, Juerg Lehni & Jonathan Puckey
|
|
|
|
* http://scratchdisk.com/ & http://jonathanpuckey.com/
|
2013-01-28 21:03:27 -05:00
|
|
|
*
|
|
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2011-07-27 17:00:31 -04:00
|
|
|
/*#*/ include('Point.js');
|
|
|
|
/*#*/ include('Size.js');
|
|
|
|
/*#*/ include('Rectangle.js');
|
2013-02-08 22:38:32 -05:00
|
|
|
/*#*/ include('Matrix.js');
|
2011-07-27 17:00:31 -04:00
|
|
|
|
|
|
|
/*#*/ include('Color.js');
|
|
|
|
|
2015-04-08 04:42:50 -04:00
|
|
|
/*#*/ include('Emitter.js');
|
|
|
|
|
2011-07-27 17:00:31 -04:00
|
|
|
/*#*/ include('Project.js');
|
|
|
|
|
|
|
|
/*#*/ include('Item.js');
|
|
|
|
/*#*/ include('Item_Cloning.js');
|
|
|
|
/*#*/ include('Item_Order.js');
|
2011-11-28 16:59:34 -05:00
|
|
|
/*#*/ include('Item_Bounds.js');
|
2014-04-15 11:10:47 -04:00
|
|
|
/*#*/ include('Item_Getting.js');
|
2011-07-27 17:00:31 -04:00
|
|
|
|
|
|
|
/*#*/ include('Layer.js');
|
|
|
|
/*#*/ include('Group.js');
|
|
|
|
/*#*/ include('Segment.js');
|
|
|
|
|
|
|
|
/*#*/ include('Path.js');
|
|
|
|
/*#*/ include('Path_Shapes.js');
|
|
|
|
/*#*/ include('Path_Drawing_Commands.js');
|
|
|
|
/*#*/ include('Path_Curves.js');
|
|
|
|
/*#*/ include('Path_Bounds.js');
|
|
|
|
/*#*/ include('Path_Length.js');
|
2015-01-04 08:01:32 -05:00
|
|
|
/*#*/ include('Path_Intersections.js');
|
2015-01-04 11:46:59 -05:00
|
|
|
/*#*/ include('Path_Boolean.js');
|
2014-03-30 07:53:35 -04:00
|
|
|
|
|
|
|
/*#*/ include('Curve.js');
|
|
|
|
/*#*/ include('CurveLocation.js');
|
|
|
|
|
|
|
|
/*#*/ include('Style.js');
|
|
|
|
|
2011-07-27 17:00:31 -04:00
|
|
|
/*#*/ include('CompoundPath.js');
|
|
|
|
|
2014-02-19 08:35:04 -05:00
|
|
|
/*#*/ include('PathItem_Contains.js');
|
|
|
|
|
2011-07-27 17:00:31 -04:00
|
|
|
/*#*/ include('PlacedSymbol.js');
|
|
|
|
|
2013-03-17 11:52:54 -04:00
|
|
|
/*#*/ include('Raster.js');
|
|
|
|
|
2013-06-12 19:50:24 -04:00
|
|
|
/*#*/ include('TextItem.js');
|
|
|
|
|
2011-07-27 17:00:31 -04:00
|
|
|
/*#*/ include('HitResult.js');
|
2012-09-30 18:01:08 -04:00
|
|
|
|
2013-04-23 10:19:08 -04:00
|
|
|
/*#*/ include('SVGImport.js');
|
|
|
|
/*#*/ include('SVGExport.js');
|
2014-04-06 07:48:03 -04:00
|
|
|
/*#*/ include('JSON.js');
|