mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
11 lines
172 B
C++
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);
|
|
} |