We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac298a commit 25f6994Copy full SHA for 25f6994
1 file changed
sources/Maths/Maths/Vector2F.cs
@@ -16,9 +16,6 @@ namespace Silk.NET.Maths
16
/// <summary>A structure representing a 2D floating-point vector.</summary>
17
internal partial struct Vector2F<T>
18
{
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
-
22
/// <summary>Gets the squared length of the vector (dot product with itself).</summary>
23
public T LengthSquared => (X * X) + (Y * Y);
24
0 commit comments