//------------------------------------------------------------------------------ // Author: Gero Mueller // 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