Fang-Robotics-MCB
Fang Robotics Team Codebase
Loading...
Searching...
No Matches
range.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace fang::math
4{
8 template <typename T>
9 struct Range
10 {
11 T min;
12 T max;
13 };
14}
Definition range.hpp:4
Definition range.hpp:10
T max
Definition range.hpp:12
T min
Definition range.hpp:11