Skip to content

Commit 16e68e2

Browse files
committed
Fix errors with Quaternion accessibility.
1 parent 5a82141 commit 16e68e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sources/Maths/Maths/Quaternion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ namespace Silk.NET.Maths
1313
/// <summary>
1414
/// Represents a four-dimensional vector used to encode 3D rotations.
1515
/// </summary>
16-
internal struct Quaternion<T> :
16+
public struct Quaternion<T> :
1717
IEquatable<Quaternion<T>>
18-
where T : IBinaryFloatingPointIeee754<T>
18+
where T : IFloatingPointIeee754<T>
1919
{
2020
/// <summary>Specifies the X-value of the vector component of the Quaternion.</summary>
2121
public T X;

0 commit comments

Comments
 (0)