Блог пользователя Brankonymous

Автор Brankonymous, история, 5 лет назад, По-английски

Does anyone know any source material or code, when given n coordinate points, you need to calculate area of given non-convex polygone.

  • Проголосовать: нравится
  • -8
  • Проголосовать: не нравится

»
5 лет назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

You can use algorithm for triangution polygon and then sum up areas of all triangles.

»
5 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

as long as the polygon is simple you can use the shoelace formula