docs: added ray 2d comments

This commit is contained in:
Syntriax 2025-06-13 22:17:39 +03:00
parent 30ccab1b93
commit 2335c3ec62

View File

@ -1,5 +1,10 @@
namespace Syntriax.Engine.Core;
/// <summary>
/// Represents an infinite ray in 2D space.
/// </summary>
/// <param name="Origin">The <see cref="Vector2D"/> in 2D space where the ray starts from.</param>
/// <param name="Direction">Normalized <see cref="Vector2D"/> indicating the ray's is direction.</param>
public readonly struct Ray2D(Vector2D Origin, Vector2D Direction)
{
/// <summary>