summaryrefslogtreecommitdiff
path: root/src/util.h
blob: 706928d1079126f7f2aa402fd6d4d75f370c8416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*!
  * Various utility functions, mostly for mathematical calculation.
  */

#ifndef UTIL_H
#define UTIL_H

#include <QPoint>
#include <QString>
#include <cmath>

#ifndef M_PI
#define M_PI 3.14159265358979323846264338327950288
#endif

// interpolate on a cubic bezier curve
float bezierInterpolate(float dist, float c0, float c1, float c2, float c3);
QPointF bezierInterpolateFull (float dist, QPointF c0, QPointF c1, QPointF c2, QPointF c3);

// rounding
float roundToNearest(float stepSize, float val);
float radiansToDegrees (float radians);
QString floatToString(float f);

// angles
float degreesToRadians(float degrees);
int normaliseAngleDeg (int degrees);
float normaliseAngleRad (float rads);

#endif // UTIL_H