36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
![]() |
/************************/
|
|||
|
/* 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
|
|||
|
|