ld33_umonster

view src/revol.h @ 6:3b4460b34d43

progress
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 23 Aug 2015 05:37:09 +0300
parents
children
line source
1 #ifndef REVOL_H_
2 #define REVOL_H_
4 #include "vmath/vmath.h"
6 struct BezCurve {
7 int numcp;
8 vec2_t *cp;
9 float scale;
10 };
12 Vector2 bezier_revol(float u, float v, void *cls);
13 Vector2 bezier_revol_normal(float u, float v, void *cls);
15 #endif // REVOL_H_