24 lines
564 B
C
24 lines
564 B
C
// Filename: mathutil.h
|
|
// Created by: mike (09Jan97)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
#ifndef MATHUTIL_H
|
|
#define MATHUTIL_H
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
// Includes
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include <pandabase.h>
|
|
|
|
#include <deg_2_rad.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Functions
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#define ABS(x) (((x)<0)?(-(x)):x)
|
|
|
|
#endif
|