Merge remote branch 'origin/master'

This commit is contained in:
Jonathan Puckey 2011-03-06 15:45:03 +01:00
commit 130d9ebb23

View file

@ -440,7 +440,7 @@ var Point = this.Point = Base.extend({
*/ */
cross: function() { cross: function() {
var point = Point.read(arguments); var point = Point.read(arguments);
return this.x * point.y - this.y - point.x; return this.x * point.y - this.y * point.x;
}, },
/** /**