mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
Simplified usages
This commit is contained in:
@@ -40,7 +40,7 @@ namespace Microsoft.Iris.Render
|
||||
|
||||
public override bool Equals(object obj) => obj is AxisAngle axisAngle && this == axisAngle;
|
||||
|
||||
public static bool operator ==(AxisAngle left, AxisAngle right) => left.Axis == right.Axis && (double)left.Angle == (double)right.Angle;
|
||||
public static bool operator ==(AxisAngle left, AxisAngle right) => left.Axis == right.Axis && left.Angle == (double)right.Angle;
|
||||
|
||||
public static bool operator !=(AxisAngle left, AxisAngle right) => !(left == right);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user