mirror of
https://github.com/godotengine/godot.git
synced 2024-12-27 11:24:59 +08:00
9 lines
192 B
C++
9 lines
192 B
C++
|
#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
|