Custom Geometry Types
Inspired by the Custom polygons thread, this article is dedicated to end-user examples on defining custom geometry containers and explains how to use them with GGL functions and algorithms.
Point
TBD
Line
TBD - extend example
typedef std::vector<my_custom_point> my_linestring;
Polygon
Requirements:
- You have to assign it the ring tag.
- You cannot assign two different tags to the same structure.
- ...
TBD - provide working example
