Liberi
An exergame built for kids with CP!
VectorUtils.cs
1 using System;
2 using UnityEngine;
3 
7 public static class VectorUtils
8 {
12  public static Vector3 GetIntegerCopy (this Vector3 v)
13  {
14  return new Vector3(Mathf.Round(v.x), Mathf.Round(v.y), Mathf.Round(v.z));
15  }
16 
20  public static float Get2DRoll (this Vector3 v)
21  {
22  float roll = Vector3.Angle(Vector3.up, v);
23 
24  if (v.x < 0)
25  roll = -roll;
26 
27  return roll;
28  }
29 
33  public static Quaternion Get2DRotation (this Vector3 v)
34  {
35  return Quaternion.Euler(0f, 0f, Get2DRoll(v));
36  }
37 
43  public static Vector3 RollToward (this Vector3 v, Vector3 target, float t)
44  {
45  float interpAngle = Mathf.LerpAngle(v.Get2DRoll(), target.Get2DRoll(), t);
46  return Quaternion.Euler(0f, 0f, interpAngle) * Vector3.up;
47  }
48 
53  public static string ToSimpleString (this Vector3 v)
54  {
55  return string.Format("[{0:0.00} {1:0.00} {2:0.00}]", v.x, v.y, v.z);
56  }
57 
63  public static string ToSuperSimpleString (this Vector3 v)
64  {
65  return string.Format("[{0:0.0} {1:0.0} {2:0.0}]", v.x, v.y, v.z);
66  }
67 
72  public static Vector3 ParseSimple (string s)
73  {
74  s = s.Substring(1, s.Length - 2);
75  var tokens = s.Split(' ');
76  return new Vector3(int.Parse(tokens[0]), int.Parse(tokens[1]), int.Parse(tokens[2]));
77  }
78 
79  public static Vector3 LerpAngle (Vector3 start, Vector3 end, float t)
80  {
81  float angle = Vector3.Angle(start, end);
82  Quaternion rotation = Quaternion.Euler(0,0, angle * t);
83  return rotation * start;
84  }
85 }