Liberi
An exergame built for kids with CP!
AngleUtils.cs
1 using UnityEngine;
2 using Janus;
3 using System;
4 using System.IO;
5 
9 public static class AngleUtils
10 {
14  public static float Normalize (float a)
15  {
16  while (a > 180) { a -= 360; }
17  while (a < -180) { a += 360; }
18 
19  return a;
20  }
21 }