Skip to content

Instantly share code, notes, and snippets.

@themisir
Last active September 13, 2018 16:47
Show Gist options
  • Save themisir/409fd57af2515e672624a1e52315dce7 to your computer and use it in GitHub Desktop.
Save themisir/409fd57af2515e672624a1e52315dce7 to your computer and use it in GitHub Desktop.
class Circle {
public float x;
public float y;
public float radius;
public void set(float x, float y, float radius) {
this.x = x;
this.y = y;
this.radius = radius;
}
public Circle(float x, float y, float radius) {
this.set(x, y, radius);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment