Skip to content

Commit 25f6994

Browse files
committed
Removed AllBitsSet from Vector2F.
1 parent aac298a commit 25f6994

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

sources/Maths/Maths/Vector2F.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ namespace Silk.NET.Maths
1616
/// <summary>A structure representing a 2D floating-point vector.</summary>
1717
internal partial struct Vector2F<T>
1818
{
19-
/// <summary>Gets a vector with all bits set for each component.</summary>
20-
public static Vector2F<T> AllBitsSet => new(T.AllBitsSet, T.AllBitsSet);
21-
2219
/// <summary>Gets the squared length of the vector (dot product with itself).</summary>
2320
public T LengthSquared => (X * X) + (Y * Y);
2421

0 commit comments

Comments
 (0)