.. _program_listing_file_PrismEngine_src_fmath.h: Program Listing for File fmath.h ================================ |exhale_lsh| :ref:`Return to documentation for file ` (``PrismEngine/src/fmath.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #ifdef _WIN32 #include #endif #ifndef M_PI #define M_PI 3.14159265358979323846 #endif #ifndef M_E #define M_E 2.71828182845904523536 #endif namespace prism { namespace math { float degToRad(float degrees); } // namespace math } // namespace prism