7 public static class VectorUtils
12 public static Vector3 GetIntegerCopy (
this Vector3 v)
14 return new Vector3(Mathf.Round(v.x), Mathf.Round(v.y), Mathf.Round(v.z));
20 public static float Get2DRoll (
this Vector3 v)
22 float roll = Vector3.Angle(Vector3.up, v);
33 public static Quaternion Get2DRotation (
this Vector3 v)
35 return Quaternion.Euler(0f, 0f, Get2DRoll(v));
43 public static Vector3 RollToward (
this Vector3 v, Vector3 target,
float t)
45 float interpAngle = Mathf.LerpAngle(v.Get2DRoll(), target.Get2DRoll(), t);
46 return Quaternion.Euler(0f, 0f, interpAngle) * Vector3.up;
53 public static string ToSimpleString (
this Vector3 v)
55 return string.Format(
"[{0:0.00} {1:0.00} {2:0.00}]", v.x, v.y, v.z);
63 public static string ToSuperSimpleString (
this Vector3 v)
65 return string.Format(
"[{0:0.0} {1:0.0} {2:0.0}]", v.x, v.y, v.z);
72 public static Vector3 ParseSimple (
string s)
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]));
79 public static Vector3 LerpAngle (Vector3 start, Vector3 end,
float t)
81 float angle = Vector3.Angle(start, end);
82 Quaternion rotation = Quaternion.Euler(0,0, angle * t);
83 return rotation * start;