stoneage8.5/石器时代8.5客户端最新源代码/石器源码/systeminc/math2.h

36 lines
1.1 KiB
C
Raw Permalink Normal View History

2020-06-23 15:53:23 +08:00
/************************/
2020-06-23 15:27:59 +08:00
/* math2.h */
/************************/
#ifndef _MATH2_H_
#define _MATH2_H_
#define PAI 3.1415926535897932384626433832795
#define ABS(a) ( ( (a)<0 ) ? -(a) : (a) )
2020-06-23 15:53:23 +08:00
/* ?冉 ? ?? ??? ??? ?*******************************************************/
2020-06-23 15:27:59 +08:00
void AdjustDir( float *dir );
void AdjustDir( int *dir );
2020-06-23 15:53:23 +08:00
/* ????????????? ***********************************************************/
2020-06-23 15:27:59 +08:00
float SinT( float theat );
2020-06-23 15:53:23 +08:00
/* ????????????? ***********************************************************/
2020-06-23 15:27:59 +08:00
float CosT( float theat );
/* ????????? *********************************************************************/
float Atan( float x, float y );
2020-06-23 15:53:23 +08:00
/* ?????伶 *************************************************************************/
2020-06-23 15:27:59 +08:00
int Rnd( int min, int max );
void initRand2( void );
int rand2( void );
2020-06-23 15:53:23 +08:00
/* ?????????? *******************************************************************/
2020-06-23 15:27:59 +08:00
float pointLen( float x1, float y1, float x2, float y2 );
float pointLen2( float x1, float y1, float x2, float y2 );
#endif