mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-24 15:41:55 +00:00
27 lines
532 B
C
27 lines
532 B
C
|
// Copyright 2020, Collabora, Ltd.
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
/*!
|
||
|
* @file
|
||
|
* @brief Wrapper header for <math.h> to ensure pi-related math constants are
|
||
|
* defined.
|
||
|
*
|
||
|
* Use this instead of directly including <math.H> in headers and when
|
||
|
* you need M_PI and its friends.
|
||
|
* @author Ryan Pavlik <ryan.pavlik@collabora.com>
|
||
|
*
|
||
|
* @ingroup aux_math
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#define _USE_MATH_DEFINES // for M_PI
|
||
|
#ifdef __cplusplus
|
||
|
#include <cmath>
|
||
|
#else
|
||
|
#include <math.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef M_1_PI
|
||
|
#define M_1_PI (1. / M_PI)
|
||
|
#endif
|