Files
runner_test/include/J3ML/Units.h
maxbyte9p 57e4ebc8db
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 26s
j3ml autodoc test
2024-04-09 16:53:24 -04:00

19 lines
304 B
C++

#pragma once
namespace J3ML::Units
{
template <typename T>
class Rotation
{
T GetDegrees() const;
T GetRadians() const;
void SetDegrees(T val);
void SetRadians(T val);
};
using Rotationf = Rotation<float>;
using Rotationd = Rotation<double>;
}