Suppres CA1021, we want out parameters here!

This commit is contained in:
Oliver Booth 2022-11-30 18:53:55 +00:00
parent 12ca1b7c18
commit a8e5fafbb4
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 2 additions and 0 deletions

View File

@ -75,6 +75,7 @@ public static class QuaternionExtensions
} }
// //
#pragma warning disable CA1021
/// <summary> /// <summary>
/// Converts this quaternion to an axis/angle pair. /// Converts this quaternion to an axis/angle pair.
/// </summary> /// </summary>
@ -109,4 +110,5 @@ public static class QuaternionExtensions
axis = new Vector3d(x, y, z); axis = new Vector3d(x, y, z);
} }
#pragma warning restore CA1021
} }