Files
PepApi.Core/PepLib.Core/AngleConverter.cs
AJ 7c5b4ded5f chore(PepLib.Core): remove unused using directives and clean up formatting
Remove unnecessary System, System.Collections.Generic, System.IO, and
System.Linq using directives that were flagged by IDE analyzers. Also
includes minor whitespace and code style normalization.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-14 07:52:17 -05:00

16 lines
318 B
C#

namespace PepLib
{
public static class AngleConverter
{
public static double ToDegrees(double radians)
{
return 180.0 / Math.PI * radians;
}
public static double ToRadians(double degrees)
{
return Math.PI / 180.0 * degrees;
}
}
}