0

I have a polygon P made of N vertices. I need an algorithm that, given P, subdivide it in a certain number of convex polygons each using at most M vertices.

Ps. P is a 2D polygon. Furthermore, i can use a polygon triangulation, but i am interested in algorithms that subdivide P into convex polygons having more than 3 vertices (and, as said above, at most M).

Marco Masci
  • 818
  • 10
  • 22
  • Why not do something similar to triangulation, but only draw a line from the inner point to every Mth vertex? – bmm6o Feb 27 '12 at 17:15

1 Answers1

0

Quadtree methods would be my recommendation. Check those out.

duffymo
  • 305,152
  • 44
  • 369
  • 561