Cleanup last commit.

This commit is contained in:
Jonathan Puckey 2011-05-23 04:20:11 +02:00
parent 6db1f6c54c
commit 211635f206
5 changed files with 6 additions and 0 deletions

View file

@ -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({

View file

@ -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) {

View file

@ -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({

View file

@ -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) {

View file

@ -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({