mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Clean up forgotten @lends statements.
This commit is contained in:
parent
7cd749e63d
commit
4a344c8fad
5 changed files with 5 additions and 15 deletions
|
@ -555,9 +555,7 @@ var Matrix = this.Matrix = Base.extend(/** @lends Matrix# */{
|
|||
return this;
|
||||
},
|
||||
|
||||
statics: {
|
||||
/** @lends Matrix */
|
||||
|
||||
statics: /** @lends Matrix */{
|
||||
// See Point.create()
|
||||
create: function(m00, m10, m01, m11, m02, m12) {
|
||||
return new Matrix(Matrix.dont).set(m00, m10, m01, m11, m02, m12);
|
||||
|
|
|
@ -751,9 +751,7 @@ var Point = this.Point = Base.extend(/** @lends Point# */{
|
|||
* @return {Boolean} {@true the point is selected}
|
||||
*/
|
||||
|
||||
statics: {
|
||||
/** @lends Point */
|
||||
|
||||
statics: /** @lends Point */{
|
||||
/**
|
||||
* Provide a faster creator for Points out of two coordinates that
|
||||
* does not rely on Point#initialize at all. This speeds up all math
|
||||
|
|
|
@ -356,9 +356,7 @@ var Size = this.Size = Base.extend(/** @lends Size# */{
|
|||
return isNaN(this.width) || isNaN(this.height);
|
||||
},
|
||||
|
||||
statics: {
|
||||
/** @lends Size */
|
||||
|
||||
statics: /** @lends Size */{
|
||||
// See Point.create()
|
||||
create: function(width, height) {
|
||||
return new Size(Size.dont).set(width, height);
|
||||
|
|
|
@ -24,9 +24,7 @@ Path.inject({ statics: new function() {
|
|||
new Segment([0.5, 1], [kappa, 0 ], [-kappa, 0])
|
||||
];
|
||||
|
||||
return {
|
||||
/** @lends Path */
|
||||
|
||||
return /** @lends Path */{
|
||||
/**
|
||||
* {@grouptitle Shaped Paths}
|
||||
* Creates a Path Item with two anchor points forming a line.
|
||||
|
|
|
@ -133,9 +133,7 @@ var Key = this.Key = new function() {
|
|||
}
|
||||
});
|
||||
|
||||
return {
|
||||
/** @lends Key */
|
||||
|
||||
return /** @lends Key */{
|
||||
modifiers: modifiers,
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue