mirror of
https://github.com/systemed/tilemaker
synced 2025-02-21 13:24:09 +01:00
10 lines
308 B
C
10 lines
308 B
C
/*! \file */
|
|
#ifndef _VISVALINGAM_H
|
|
#define _VISVALINGAM_H
|
|
|
|
// Visvalingam simplify
|
|
Linestring simplifyVis(const Linestring &ls, double max_distance);
|
|
Polygon simplifyVis(const Polygon &p, double max_distance);
|
|
MultiPolygon simplifyVis(const MultiPolygon &mp, double max_distance);
|
|
|
|
#endif //_VISVALINGAM_H
|