mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
bc2729683c
- Symbol -> SymbolDefinition - PlacedSymbol -> SymbolItem - Symbol#definition -> SymbolDefinition#item - PlacedSymbol#symbol -> SymbolItem#definition - Deprecate Project#symbols Closes #770
65 lines
1.4 KiB
JavaScript
65 lines
1.4 KiB
JavaScript
/*
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
* http://paperjs.org/
|
|
*
|
|
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
|
|
* http://scratchdisk.com/ & http://jonathanpuckey.com/
|
|
*
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
/*#*/ include('Point.js');
|
|
/*#*/ include('Size.js');
|
|
/*#*/ include('Rectangle.js');
|
|
/*#*/ include('Matrix.js');
|
|
|
|
/*#*/ include('Color.js');
|
|
|
|
/*#*/ include('Emitter.js');
|
|
|
|
/*#*/ include('Project.js');
|
|
|
|
/*#*/ include('Item.js');
|
|
/*#*/ include('Item_Cloning.js');
|
|
/*#*/ include('Item_Order.js');
|
|
/*#*/ include('Item_Bounds.js');
|
|
/*#*/ include('Item_Getting.js');
|
|
|
|
/*#*/ 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');
|
|
/*#*/ include('Path_Intersections.js');
|
|
/*#*/ include('Path_Boolean.js');
|
|
|
|
/*#*/ include('Shape.js');
|
|
|
|
/*#*/ include('Curve.js');
|
|
/*#*/ include('CurveLocation.js');
|
|
|
|
/*#*/ include('Style.js');
|
|
|
|
/*#*/ include('CompoundPath.js');
|
|
|
|
/*#*/ include('PathItem_Contains.js');
|
|
|
|
/*#*/ include('SymbolItem.js');
|
|
|
|
/*#*/ include('Raster.js');
|
|
|
|
/*#*/ include('TextItem.js');
|
|
|
|
/*#*/ include('HitResult.js');
|
|
|
|
/*#*/ include('JSON.js');
|
|
|
|
/*#*/ include('SVGImport.js');
|
|
/*#*/ include('SVGExport.js');
|