-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAngle.cs
147 lines (116 loc) · 5.36 KB
/
Angle.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using static System.Runtime.CompilerServices.MethodImplOptions;
namespace Plato
{
/// <summary>
/// A value type that represents angles internally as radians.
/// Separating angles from numbers, makes working with them easier, and
/// less prone to unit-based errors.
/// </summary>
[DataContract]
public partial struct Angle
{
// -------------------------------------------------------------------------------
// Field (the wrapped float)
// -------------------------------------------------------------------------------
[DataMember] public readonly float Value;
// -------------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------------
[MethodImpl(AggressiveInlining)]
public Angle(float value)
=> Value = value;
// -------------------------------------------------------------------------------
// Convert to/from float
// -------------------------------------------------------------------------------
[MethodImpl(AggressiveInlining)]
public static implicit operator Angle(float f) => new(f);
[MethodImpl(AggressiveInlining)]
public static implicit operator float(Angle n) => n.Value;
[MethodImpl(AggressiveInlining)]
public static implicit operator Angle(Number x) => new(x);
public Number Radians
{
[MethodImpl(AggressiveInlining)]
get => Value;
}
// -------------------------------------------------------------------------------
// Operators (forward to float)
// -------------------------------------------------------------------------------
[MethodImpl(AggressiveInlining)]
public static Angle operator +(Angle a, Angle b)
=> new(a.Value + b.Value);
[MethodImpl(AggressiveInlining)]
public static Angle operator -(Angle a, Angle b)
=> new(a.Value - b.Value);
[Obsolete("This method is illegal and should not be used.", true)]
public static Angle operator *(Angle a, Angle b)
=> throw new Exception("Multiplying two angles is not well-defined");
[Obsolete("This method is illegal and should not be used.", true)]
public static Angle operator /(Angle a, Angle b)
=> throw new Exception("Dividing two angles is not well-defined");
[MethodImpl(AggressiveInlining)]
public static Angle operator *(Angle a, Number x)
=> new(a.Value * x);
[MethodImpl(AggressiveInlining)]
public static Angle operator *(Number x, Angle a)
=> x * a.Value;
[MethodImpl(AggressiveInlining)]
public static Angle operator /(Angle a, Number x)
=> a.Value / x;
[MethodImpl(AggressiveInlining)]
public static Angle operator -(Angle n)
=> -n.Value;
[MethodImpl(AggressiveInlining)]
public static Boolean operator <(Angle a, Angle b)
=> a.Value < b.Value;
[MethodImpl(AggressiveInlining)]
public static Boolean operator <=(Angle a, Angle b)
=> a.Value <= b.Value;
[MethodImpl(AggressiveInlining)]
public static Boolean operator >(Angle a, Angle b)
=> a.Value > b.Value;
[MethodImpl(AggressiveInlining)]
public static Boolean operator >=(Angle a, Angle b)
=> a.Value >= b.Value;
// -------------------------------------------------------------------------------
// IComparable / IComparable<Angle> Implementation
// -------------------------------------------------------------------------------
[MethodImpl(AggressiveInlining)]
public Integer CompareTo(Angle other)
=> Value.CompareTo(other.Value);
// -------------------------------------------------------------------------------
// Trigonometric Functions
// https://en.wikipedia.org/wiki/Trigonometric_functions
// -------------------------------------------------------------------------------
/// <summary>
/// Cosine
/// </summary>
public Number Cos { [MethodImpl(AggressiveInlining)] get => MathF.Cos(Value); }
/// <summary>
/// Hyperbolic cosine.
/// </summary>
public Number Cosh { [MethodImpl(AggressiveInlining)] get => MathF.Cosh(Value); }
/// <summary>
/// Sine
/// </summary>
public Number Sin { [MethodImpl(AggressiveInlining)] get => MathF.Sin(Value); }
/// <summary>
/// Sine and cosine.
/// </summary>
public (Number Sin, Number Cos) SinCos { [MethodImpl(AggressiveInlining)] get => MathF.SinCos(Value); }
/// <summary>
/// Hyperbolic sine
/// </summary>
public Number Sinh { [MethodImpl(AggressiveInlining)] get => MathF.Sinh(Value); }
/// <summary>
/// The tangent.
/// </summary>
public Number Tan { [MethodImpl(AggressiveInlining)] get => MathF.Tan(Value); }
/// <summary>
/// The hyperbolic tangent.
/// </summary>
public Number Tanh { [MethodImpl(AggressiveInlining)] get => MathF.Tanh(Value); }
}
}