20 lines
532 B
C++
20 lines
532 B
C++
//------------------------------------------------------------------------------
|
|
// Author: Gero Mueller <gero.mueller@cloo.de>
|
|
// Copyright: (c) 2006 Gero Mueller
|
|
// License: MIT License
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef BLUECORE_COMMON_H
|
|
#define BLUECORE_COMMON_H
|
|
|
|
namespace BlueCore
|
|
{
|
|
/* Scalar defines the default floating point type */
|
|
typedef double Scalar;
|
|
|
|
const Scalar Pi = 3.141592653589793;
|
|
|
|
} // namespace bc
|
|
|
|
#endif // BLUECORE_COMMON_H
|