mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 15:03:27 +00:00
11 lines
188 B
C++
11 lines
188 B
C++
//
|
|
// Created by vlad on 11/6/23.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
namespace uml::angles
|
|
{
|
|
[[nodiscard]] float RadiansToDegrees(float rads);
|
|
[[nodiscard]] float DegreesToRadians(float degrees);
|
|
} |