swift
constants.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2022 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_MISC_MATH_CONSTANTS_H
7 #define SWIFT_MISC_MATH_CONSTANTS_H
8 
9 namespace swift::misc::math
10 {
12  constexpr double c_pi = 3.1415926535897932;
13 
15  constexpr double c_pihalf = c_pi / 2;
16 
18  constexpr double c_pi2 = c_pi * 2;
19 
20 } // namespace swift::misc::math
21 
22 #endif // SWIFT_MISC_MATH_CONSTANTS_H
constexpr double c_pi
PI.
Definition: constants.h:12
constexpr double c_pihalf
PI / 2.
Definition: constants.h:15
constexpr double c_pi2
PI * 2.
Definition: constants.h:18