11 lines
190 B
C
11 lines
190 B
C
#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_*/
|