2013-01-28 21:03:27 -05:00
|
|
|
/*
|
|
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
|
|
* http://paperjs.org/
|
|
|
|
*
|
2020-05-23 16:24:42 -04:00
|
|
|
* Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey
|
|
|
|
* http://juerglehni.com/ & https://puckey.studio/
|
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');
|
2016-02-02 07:55:36 -05:00
|
|
|
/*#*/ include('Path_Constructors.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');
|
2016-07-19 04:09:55 -04:00
|
|
|
|
|
|
|
/*#*/ include('CompoundPath.js');
|
|
|
|
|
|
|
|
/*#*/ include('PathItem.js');
|
2016-02-02 07:55:36 -05:00
|
|
|
/*#*/ include('PathItem_Contains.js');
|
2014-03-30 07:53:35 -04:00
|
|
|
|
2015-06-16 12:38:57 -04:00
|
|
|
/*#*/ include('Shape.js');
|
|
|
|
|
2014-03-30 07:53:35 -04:00
|
|
|
/*#*/ include('Curve.js');
|
|
|
|
/*#*/ include('CurveLocation.js');
|
|
|
|
|
|
|
|
/*#*/ include('Style.js');
|
|
|
|
|
2016-01-31 10:52:51 -05:00
|
|
|
/*#*/ include('SymbolItem.js');
|
2011-07-27 17:00:31 -04:00
|
|
|
|
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
|
|
|
|
2015-07-27 05:42:41 -04:00
|
|
|
/*#*/ include('JSON.js');
|
|
|
|
|
2016-02-01 06:50:22 -05:00
|
|
|
/*#*/ include('SvgImport.js');
|
|
|
|
/*#*/ include('SvgExport.js');
|
2016-07-08 19:01:19 -04:00
|
|
|
|
|
|
|
/*#*/ include('Numerical.js');
|
2018-10-15 06:06:04 -04:00
|
|
|
|
2018-11-23 05:54:42 -05:00
|
|
|
/*#*/ include('PaperScript.js');
|
|
|
|
|
2018-10-15 06:06:04 -04:00
|
|
|
// There is no need to test interactions in node context.
|
2019-06-06 09:26:58 -04:00
|
|
|
if (!isNodeContext) {
|
2018-10-17 10:45:02 -04:00
|
|
|
/*#*/ include('Interactions.js');
|
|
|
|
}
|