mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Remove Clip class again.
Group can handle that.
This commit is contained in:
parent
177229f99f
commit
b532390d9c
2 changed files with 0 additions and 30 deletions
|
@ -1,29 +0,0 @@
|
|||
/*
|
||||
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
||||
* http://paperjs.org/
|
||||
*
|
||||
* Copyright (c) 2011 - 2013, Juerg Lehni & Jonathan Puckey
|
||||
* http://lehni.org/ & http://jonathanpuckey.com/
|
||||
*
|
||||
* Distributed under the MIT license. See LICENSE file for details.
|
||||
*
|
||||
* All rights reserved.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name Clip
|
||||
*
|
||||
* @class A Clip is a collection of items, similar to a Group. But instead of
|
||||
* automatically passing on transformations to its children by calling
|
||||
* {@link Item#applyMatrix()}, the transformations are stored in the internal
|
||||
* matrix.
|
||||
*
|
||||
* @extends Group
|
||||
*/
|
||||
var Clip = Group.extend(/** @lends Clip# */{
|
||||
_transformContent: false,
|
||||
|
||||
initialize: function Clip() {
|
||||
Group.apply(this, arguments);
|
||||
}
|
||||
});
|
|
@ -67,7 +67,6 @@ var paper = new function() {
|
|||
/*#*/ include('item/Item.js');
|
||||
/*#*/ include('item/Group.js');
|
||||
/*#*/ include('item/Layer.js');
|
||||
/*#*/ include('item/Clip.js');
|
||||
/*#*/ include('item/Shape.js');
|
||||
/*#*/ include('item/Raster.js');
|
||||
/*#*/ include('item/PlacedSymbol.js');
|
||||
|
|
Loading…
Reference in a new issue