File Angle.cs

File List > Render > src > Angle.cs

Go to the documentation of this file.

using System;

namespace Qkmaxware.Rendering {

public static class Angle {
    public static readonly double Deg2Rad = Math.PI / 180.0;
    public static readonly double Rad2Deg = 180.0 / Math.PI;

}

}