summaryrefslogtreecommitdiff
path: root/src/us/minak/MetaCircle.java
blob: 8741e2013a6a279133ef78fb2489dfb3e1a6384a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package us.minak;

import android.graphics.Color;

/*
 *	Not sure if this should be drawable or what.
 *
 */
public class MetaCircle {
	public MetaExpression metaExpr;
	public int x;
	public int y;
	public int radius;
	public Color color;
	public boolean expanded;
	public int expansion; //the level of expansion (if multiple circles are expanded, this decides precidence)
}