blob: 44aa0041204444d7d800e11eb8a6f661bd94f174 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef B2D_DECOMPOSE_H
#define B2D_DECOMPOSE_H
#include "math_2d.h"
#include "vector.h"
Vector< Vector<Vector2> > b2d_decompose(const Vector<Vector2>& p_polygon);
#endif // B2D_DECOMPOSE_H
|