js/foundation/geom/point/point.js in rsence-2.0.0.10.pre vs js/foundation/geom/point/point.js in rsence-2.0.0.11

- old
+ new

@@ -14,10 +14,11 @@ ** +type+:: '[HPoint]' ** +x+:: The X coordinate of the point ** +y+:: The Y coordinate of the point ** ***/ +var//RSence.Foundation.Geom HPoint = HClass.extend({ /** = Description * Creates a new Point object that corresponds to the point (x, y), or that's * copied from point. If no coordinate values are assigned, the Point's @@ -193,10 +194,9 @@ * **/ equals: function(_point) { return ( this.x === _point.x && this.y === _point.y ); } - - + });