-
Brandon Lai-Cheong authoredBrandon Lai-Cheong authored
orientation.h 169 B
#pragma once
struct Point;
enum Orientation {
Clockwise, Collinear, Counterclockwise
};
Orientation orientation(const Point &p1, const Point &p2, const Point &p3);