| 235 | //------------------------------------------------------------------------ |
| 236 | template<class VSA, class VSB> |
| 237 | inline void conv_gpc<VSA, VSB>::add_vertex(double x, double y) |
| 238 | { |
| 239 | gpc_vertex v; |
| 240 | v.x = x; |
| 241 | v.y = y; |
| 242 | m_vertex_accumulator.add(v); |
| 243 | } |
| 244 | |
| 245 | |
| 246 | //------------------------------------------------------------------------ |