GrpcPrint/TestClient/utils/MathHelper.h

14 lines
160 B
C
Raw Normal View History

2024-05-11 17:43:38 +08:00
#pragma once
class MathHelper
{
public:
MathHelper();
~MathHelper();
static double DegreesToRadians(double degree);
public:
const static double m_PI;
};