blob: 633a5b48f1677e01ffec86280e614f5cabd9b90d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GEOMETRY_H_
#define GEOMETRY_H_
#include "Polygon.h"
#include "Rectangle.h"
void simplifyPolygon(const Polygon *in, const Rectangle *rect, Polygon *out);
#endif /*GEOMETRY_H_*/
|