From ad4b6b21bb90cb774d95e2040642c5c444c11810 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 6 May 2014 21:44:44 -0400 Subject: Andrew wants this --- src/us/minak/MetaCircle.java | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/us/minak/MetaCircle.java (limited to 'src/us/minak/MetaCircle.java') diff --git a/src/us/minak/MetaCircle.java b/src/us/minak/MetaCircle.java deleted file mode 100644 index 908842a..0000000 --- a/src/us/minak/MetaCircle.java +++ /dev/null @@ -1,29 +0,0 @@ -package us.minak; - -/* - * Not sure if this should be drawable or what. - * - */ -public class MetaCircle { - public MetaExpression metaExpr; - public float x; - public float y; - public float radius; - public int color; - public boolean expanded; - public int expansion; //the level of expansion (if multiple circles are expanded, this decides precidence) - - MetaCircle(float x, float y, float radius, int color, MetaExpression metaExpr) { - this.metaExpr = metaExpr; - this.x = x; - this.y = y; - this.radius = radius; - this.color = color; - this.expanded = false; - this.expansion = 0; - } - - public boolean containsPoint(float x, float y) { - return Math.pow(x - this.x, 2) + Math.pow(y - this.y, 2) < Math.pow(this.radius, 2) ? true : false; - } -} -- cgit v1.2.3