Experimenting the point-in-polygon algorithm with C++ and OpenGL.
O(N), where N = #sides of polygon(s).
mkdir build && cd build
cmake ..
make
// Run example with single polygon
./Example
// Run example with multiple polygons
// (i.e. you can draw multiple polygons and test
// if a point is inside of any of the polygons).
./Example2