tavli

view src/revol.h @ 14:283eb6e9f0a3

scenery
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 28 Jun 2015 07:44:23 +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_