Examples: fix compilation due to inline

Undefined references were occurring on inline (not static) functions.
Adding static to these functions solves the issue.
This commit is contained in:
Daniel Zaoui 2015-06-18 05:32:39 +03:00
parent 87382a2dad
commit 8c4c825e4d
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ Bezier bezierFromPoints(Point p1, Point p2,
return b;
}
inline void
static inline void
parameterSplitLeft(Bezier *b, float t, Bezier *left)
{
left->x1 = b->x1;
@ -104,7 +104,7 @@ Bezier bezierOnInterval(Bezier *b, float t0, float t1)
return result;
}
inline void
static inline void
_bezier_coefficients(float t, float *ap, float *bp, float *cp, float *dp)
{
float a,b,c,d;