Back to project page DiceInDark.
The source code is released under:
GNU General Public License
If you think the Android project DiceInDark listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.framework.math; public class Circle { public final Vector2 center = new Vector2(); public float radius; public Circle(float x, float y, float radius) { this.center.set(x,y); this.radius = radius; } }