RoboidControl for Arduino
Loading...
Searching...
No Matches
FloatSingle.h
Go to the documentation of this file.
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
8class Float {
9public:
10 static const float epsilon;
11 static const float sqrEpsilon;
12
13 static float Clamp(float f, float min, float max);
14};
15#endif
Definition FloatSingle.h:8
static const float sqrEpsilon
Definition FloatSingle.h:11
static const float epsilon
Definition FloatSingle.h:10
static float Clamp(float f, float min, float max)
Definition FloatSingle.cpp:11