Break polygon into smaller ones

I am working with geodjango and I want to split a 2D rectangular polygon into smaller ones.

My input is a large rectangle and I want to split it into smaller rectangles. The sum of the smaller rectangles must be the original rectangle.

All sub-elements must be the same size.

How can i do this?

Thanks.

+2


a source to share


1 answer


  • Select any point within the rectangle
  • Draw two lines across it, parallel to the edges of the rectangle. You have now divided the rectangle into four smaller ones.


+2


a source







All Articles