삼각형1 CCW 총 세점에서 두 점과 나머지 한점의 위치를 판단함삼각형 면적 구하는 공식(다각형 면적 구하는 공식, N각형) static int ccw(Point a, Point b, Point c) { long result = (a.x*b.y+b.x*c.y+c.x*a.y) - (b.x*a.y+c.x*b.y+a.x*c.y); if (result > 0) return 1; if (result < 0) return -1; return 0; } 2017. 12. 12. 이전 1 다음