tavli

view src/revol.h @ 21:c3fbf9616dbd

slot bounds, and ray testing
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 02 Jul 2015 00:01:39 +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_