public static float getDistance(float x,float y,float x1, float y1)
{
return (float) Math.sqrt(Math.pow(Math.abs(x - x1),2)+ Math.pow(Math.abs(y - y1),2));
}
'ANDROID' 카테고리의 다른 글
자바스크립트로 웹호출 (post) (2) | 2014.10.11 |
---|---|
안드로이드 터치이벤트 touchevent 좌표 사각형 충돌체크. (0) | 2014.10.11 |
bitmap to byte 비트맵을 바이트정보로. (0) | 2014.10.11 |
android 치트 막기. (0) | 2014.10.11 |
웹으로 파일 업로드. (0) | 2014.10.11 |