mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
Vector documentation
This commit is contained in:
@@ -4,6 +4,9 @@ using GlitchyEngine.Math.Attributes;
|
||||
|
||||
namespace GlitchyEngine.Math;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a vector with two double-precision floating-point values.
|
||||
/// </summary>
|
||||
[Vector(typeof(double), 2, "double")]
|
||||
[VectorMath]
|
||||
[ComparableVector]
|
||||
@@ -12,6 +15,9 @@ public partial struct double2
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a vector with three double-precision floating-point values.
|
||||
/// </summary>
|
||||
[Vector(typeof(double), 3, "double")]
|
||||
[VectorMath]
|
||||
[ComparableVector]
|
||||
@@ -20,6 +26,9 @@ public partial struct double3
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a vector with four double-precision floating-point values.
|
||||
/// </summary>
|
||||
[Vector(typeof(double), 4, "double")]
|
||||
[VectorMath]
|
||||
[ComparableVector]
|
||||
|
||||
Reference in New Issue
Block a user