GrpcPrint/PrintC/utils/MathHelper.h

14 lines
160 B
C
Raw Normal View History

2024-04-01 18:26:14 +08:00
#pragma once
class MathHelper
{
public:
MathHelper();
~MathHelper();
static double DegreesToRadians(double degree);
public:
const static double m_PI;
};