tavli

view src/revol.h @ 18:986c0b76513f

shadows, not completed
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 29 Jun 2015 01:29:36 +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_