Rename ObservedRectangle to LinkedRectangle, ObservedPoint to LinkedPoint, and add more comments about what it is they are doing.

This commit is contained in:
Jürg Lehni 2011-03-22 17:27:46 +00:00
parent dbb947b7aa
commit b5fdecf3d1
6 changed files with 38 additions and 39 deletions

View file

@ -42,7 +42,7 @@ var CompoundPath = this.CompoundPath = PathItem.extend({
y2 = Math.max(rect2.y + rect2.height, y1 + y2 - y1);
}
}
return ObservedRectangle.create(this, 'setBounds',
return LinkedRectangle.create(this, 'setBounds',
x1, y1, x2 - x1, y2 - y1);
},