Create a set of triangles from a concave/convex polygon with no holes and no intersecting sides. @param contour an open list of vertices that make up a 2D polygon @param result list of vertex indices (to contour list) in groups of three for the render triangles @return true if succeeded else false
(List<Vector2D> contour, List<Integer> result)