summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2019-01-03 14:01:00 +0100
committerAleks Kissinger <aleks0@gmail.com>2019-01-03 14:01:00 +0100
commit99bc4eedae99fc813db3a852139758bca75bddd7 (patch)
treecec779f1a075f8b7e8f5eac02ee8e9441e516f14 /src/util.h
parentcbe3074cedac1cc509282a1a0df80cac998355a6 (diff)
fixed many warnings in TikzScene and related files (mostly floating point)
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/util.h b/src/util.h
index 89d0c5b..5d1073a 100644
--- a/src/util.h
+++ b/src/util.h
@@ -33,17 +33,19 @@
#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);
+qreal bezierInterpolate(qreal dist, qreal c0, qreal c1, qreal c2, qreal c3);
+QPointF bezierInterpolateFull (qreal dist, QPointF c0, QPointF c1, QPointF c2, QPointF c3);
// rounding
-float roundToNearest(float stepSize, float val);
-float radiansToDegrees (float radians);
-QString floatToString(float f);
+qreal roundToNearest(qreal stepSize, qreal val);
+qreal radiansToDegrees (qreal radians);
+bool almostZero(qreal f);
+bool almostEqual(qreal f1, qreal f2);
+QString floatToString(qreal f);
// angles
-float degreesToRadians(float degrees);
+qreal degreesToRadians(qreal degrees);
int normaliseAngleDeg (int degrees);
-float normaliseAngleRad (float rads);
+qreal normaliseAngleRad (qreal rads);
#endif // UTIL_H