2011-03-07 00:50:44 +00:00
|
|
|
/*
|
|
|
|
* Paper.js
|
|
|
|
*
|
|
|
|
* This file is part of Paper.js, a JavaScript Vector Graphics Library,
|
|
|
|
* based on Scriptographer.org and designed to be largely API compatible.
|
2011-03-08 01:41:50 +00:00
|
|
|
* http://paperjs.org/
|
2011-03-07 00:50:44 +00:00
|
|
|
* http://scriptographer.org/
|
|
|
|
*
|
2011-03-08 01:41:50 +00:00
|
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
|
|
*
|
2011-03-07 00:50:44 +00:00
|
|
|
* Copyright (c) 2011, Juerg Lehni & Jonathan Puckey
|
|
|
|
* http://lehni.org/ & http://jonathanpuckey.com/
|
|
|
|
*
|
2011-03-08 01:41:50 +00:00
|
|
|
* All rights reserved.
|
2011-03-07 00:50:44 +00:00
|
|
|
*/
|
|
|
|
|
2011-06-14 23:04:32 +01:00
|
|
|
/**
|
|
|
|
* @name PathItem
|
|
|
|
* @class
|
|
|
|
* @extends Item
|
|
|
|
*/
|
2011-03-04 13:34:31 +00:00
|
|
|
var PathItem = this.PathItem = Item.extend({
|
2011-06-14 23:04:32 +01:00
|
|
|
/**
|
|
|
|
* {@grouptitle Postscript Style Drawing Commands}
|
|
|
|
*
|
|
|
|
* @name PathItem#moveTo
|
|
|
|
* @param {Point} point
|
|
|
|
*/
|
2011-02-13 16:26:24 +00:00
|
|
|
});
|