Commit 960dee8a authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #3953 from ilya-lavrenov:cuda_unused

parents 4840c4ae ceec0eb3
......@@ -675,28 +675,6 @@ namespace
/////////////////////////////////////////
// POSITION & SCALE & ROTATION
double toRad(double a)
{
return a * CV_PI / 180.0;
}
double clampAngle(double a)
{
double res = a;
while (res > 360.0)
res -= 360.0;
while (res < 0)
res += 360.0;
return res;
}
bool angleEq(double a, double b, double eps = 1.0)
{
return (fabs(clampAngle(a - b)) <= eps);
}
class GHT_Guil_Full : public GHT_Pos
{
public:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment