tavli

view src/revol.h @ 24:0aadb519b5ee

correct highlighting
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 08 Jul 2015 15:11:58 +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_