mirror of
https://github.com/goldenfishs/MRobot.git
synced 2025-04-28 23:39:55 +08:00
14 lines
148 B
C
14 lines
148 B
C
/*
|
|
自定义的数学运算。
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
#include <math.h>
|
|
#include <stdint.h>
|
|
|
|
#ifndef M_PI
|
|
#define M_PI 3.14159265358979323846f
|
|
#endif
|