mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
Cleanup last commit.
This commit is contained in:
parent
6db1f6c54c
commit
211635f206
5 changed files with 6 additions and 0 deletions
|
@ -742,6 +742,7 @@ var Point = this.Point = Base.extend({
|
|||
* setting itself again on the setter that corresponds to the getter that
|
||||
* produced this LinkedPoint. See uses of LinkedPoint.create()
|
||||
* Note: This prototype is not exported.
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
var LinkedPoint = Point.extend({
|
||||
|
|
|
@ -449,6 +449,7 @@ var Rectangle = this.Rectangle = Base.extend({
|
|||
* through setting itself again on the setter that corresponds to the getter
|
||||
* that produced this LinkedRectangle. See uses of LinkedRectangle.create()
|
||||
* Note: This prototype is not exported.
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
var LinkedRectangle = Rectangle.extend({
|
||||
|
@ -469,6 +470,7 @@ var LinkedRectangle = Rectangle.extend({
|
|||
* Provide a faster creator for Points out of two coordinates that
|
||||
* does not rely on Point#initialize at all. This speeds up all math
|
||||
* operations a lot.
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
create: function(owner, setter, x, y, width, height) {
|
||||
|
|
|
@ -418,6 +418,7 @@ var Size = this.Size = Base.extend({
|
|||
* setting itself again on the setter that corresponds to the getter that
|
||||
* produced this LinkedSize. See uses of LinkedSize.create()
|
||||
* Note: This prototype is not exported.
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
var LinkedSize = Size.extend({
|
||||
|
|
|
@ -655,6 +655,7 @@ var Item = this.Item = Base.extend({
|
|||
* @param flags: Array of any of the following: 'objects', 'children',
|
||||
* 'fill-gradients', 'fill-patterns', 'stroke-patterns', 'lines'.
|
||||
* Default: ['objects', 'children']
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
transform: function(matrix, flags) {
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
/**
|
||||
* An internal version of Point that notifies its segment of each change
|
||||
* Note: This prototype is not exported.
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
var SegmentPoint = Point.extend({
|
||||
|
|
Loading…
Reference in a new issue