18 lines
309 B
C++
18 lines
309 B
C++
// Filename: mathNumbers.h
|
|
// Created by: mike (23Jan99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
#ifndef MATHNUMBERS_H
|
|
#define MATHNUMBERS_H
|
|
|
|
#include <pandabase.h>
|
|
|
|
class EXPCL_PANDA MathNumbers {
|
|
PUBLISHED:
|
|
static const double pi;
|
|
static const double ln2;
|
|
};
|
|
|
|
#endif
|