mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
394 B
C
23 lines
394 B
C
|
#ifndef DISTANCEBETWEENPOINTS_H
|
||
|
#define DISTANCEBETWEENPOINTS_H
|
||
|
|
||
|
#include <math.h>
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace util {
|
||
|
|
||
|
static float distanceBetweenPoints(const QPointF &p1, const QPointF &p2)
|
||
|
{
|
||
|
QPointF tmp = p1 - p2;
|
||
|
|
||
|
float distance = 0.f;
|
||
|
distance += tmp.x() * tmp.x();
|
||
|
distance += tmp.y() * tmp.y();
|
||
|
|
||
|
return sqrt(distance);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // DISTANCEBETWEENPOINTS_H
|