Skip to content

Commit

Permalink
Add more angle methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfkeenan committed Nov 25, 2023
1 parent c030275 commit d4c84a4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions documentation/proposals/Proposal - 3.0 Additional math types.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,22 @@ public static class Angle
public static Angle<T> Between<T>(Vector3F<T> left, Vector3F<T> right)
where T : IFloatingPointIeee754<T>
=> default;

public static Angle<T> ZeroAngle<T>()
where T : IFloatingPointIeee754<T>
=> default;

public static Angle<T> RightAngle<T>()
where T : IFloatingPointIeee754<T>
=> default;

public static Angle<T> StraightAngle<T>()
where T : IFloatingPointIeee754<T>
=> default;

public static Angle<T> FullRotationAngle<T>()
where T : IFloatingPointIeee754<T>
=> default;
}
```

Expand Down

0 comments on commit d4c84a4

Please sign in to comment.