GrpcPrint/PrintS/utils/MathHelper.h
2024-03-19 17:45:12 +08:00

14 lines
160 B
C++

#pragma once
class MathHelper
{
public:
MathHelper();
~MathHelper();
static double DegreesToRadians(double degree);
public:
const static double m_PI;
};