Remove Clip class again.

Group can handle that.
This commit is contained in:
Jürg Lehni 2013-06-18 15:58:58 -07:00
parent 177229f99f
commit b532390d9c
2 changed files with 0 additions and 30 deletions

View file

@ -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);
}
});

View file

@ -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');