LinearAlgebra
Loading...
Searching...
No Matches
FloatSingle.h
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0.If a copy of the MPL was not distributed with this
3// file, You can obtain one at https ://mozilla.org/MPL/2.0/.
4
5#ifndef FLOAT_H
6#define FLOAT_H
7
8namespace Passer {
9namespace LinearAlgebra {
10
11class Float {
12public:
13 static const float epsilon;
14 static const float sqrEpsilon;
15
16 static float Clamp(float f, float min, float max);
17};
18
19} // namespace LinearAlgebra
20} // namespace Passer
21using namespace Passer::LinearAlgebra;
22
23#endif
An angle in various representations.
Definition Angle.h:21