Skip to content

Instantly share code, notes, and snippets.

@edinak1
Last active October 31, 2015 18:14
Show Gist options
  • Save edinak1/e84a6f7d32fdafb610b7 to your computer and use it in GitHub Desktop.
Save edinak1/e84a6f7d32fdafb610b7 to your computer and use it in GitHub Desktop.
package metod;
public class Quadrant {
public static void main(String[] args) {
System.out.println(getQuadrant(0,60));
System.out.println(getQuadrant(0,64));
System.out.println(getQuadrant(68,96));
System.out.println(getQuadrant(512,65));
}
static String getQuadrant(int x,int y)
{
return y/64+"_"+x/64;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment