본문 바로가기

android tech.

두 점의 거리

int dX = targetX - centerX;
int dY = targetY - centerY;
int distance = (int)Math.sqrt(Math.pow(Math.abs(dX), 2) + Math.pow(Math.abs(dY), 2));


'android tech.' 카테고리의 다른 글

회전 이동  (0) 2016.12.05
enum 활용  (0) 2016.10.06
파일 이어받기  (0) 2015.12.02
Https 및 언어에 따라 Json 다운로드  (0) 2015.12.01
가속 센서와 자기 센서로 회전 구하기  (0) 2015.08.31