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

36 lines
1.1 KiB
C
Raw Normal View History

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) )
/* ?<3F>T<EFBFBD><54><EFBFBD><EFBFBD> ? ?? ??? ??? ?*******************************************************/
void AdjustDir( float *dir );
void AdjustDir( int *dir );
/* ??????<3F><>??????? ***********************************************************/
float SinT( float theat );
/* ??????<3F><>??????? ***********************************************************/
float CosT( float theat );
/* ????????? *********************************************************************/
float Atan( float x, float y );
/* ?????<3F>D<EFBFBD><44> *************************************************************************/
int Rnd( int min, int max );
void initRand2( void );
int rand2( void );
/* ?<3F><>???????? *******************************************************************/
float pointLen( float x1, float y1, float x2, float y2 );
float pointLen2( float x1, float y1, float x2, float y2 );
#endif