From 025f1c5afc0ab394d04de91226d944e369abf7a5 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Wed, 4 Mar 2015 13:53:57 -0800 Subject: [PATCH] Fixed ellipse-ellipse intersection test. --- app/lib/world/ellipse.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/world/ellipse.coffee b/app/lib/world/ellipse.coffee index 6aaf88057..92f76db88 100644 --- a/app/lib/world/ellipse.coffee +++ b/app/lib/world/ellipse.coffee @@ -153,7 +153,7 @@ class Ellipse rectangle.intersectsEllipse @ intersectsEllipse: (ellipse) -> - @rectangle().intersectsEllipse @ # TODO: actually implement ellipse-ellipse intersection + @rectangle().intersectsEllipse ellipse # TODO: actually implement ellipse-ellipse intersection #return true if @containsPoint ellipse.getPos() intersectsShape: (shape) ->