Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DataGreed/a84b295ade22a6d2a1b4296dcf9ff01e to your computer and use it in GitHub Desktop.
Save DataGreed/a84b295ade22a6d2a1b4296dcf9ff01e to your computer and use it in GitHub Desktop.

Revisions

  1. DataGreed renamed this gist May 12, 2020. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. DataGreed created this gist May 12, 2020.
    7 changes: 7 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    public static class Vector2Extension
    {
    public static Vector2 Rotate(this Vector2 v, float degrees)
    {
    return Quaternion.Euler(0, 0, degrees) * v;
    }
    }