Files
omath/include/uml/angles.h
2023-11-23 05:03:54 +03:00

11 lines
172 B
C++

//
// Created by vlad on 11/6/23.
//
#pragma once
namespace uml::angles
{
[[nodiscard]] float RadToDeg(float rads);
[[nodiscard]] float DegToRad(float degrees);
}