Fix Rectangle docs

This commit is contained in:
Stefan Müller 2025-09-27 23:20:48 +02:00
parent 83141aeb14
commit 157fea7761

View File

@ -7,12 +7,12 @@ namespace SpatialCollections
public class Rectangle public class Rectangle
{ {
/// <summary> /// <summary>
/// Vector containing the lowest X and Y coordinates contained in the bounding box. /// Vector containing the lowest X and Y coordinates contained in the rectangle.
/// </summary> /// </summary>
public Vector2 Min; public Vector2 Min;
/// <summary> /// <summary>
/// Vector containing the highest X and Y coordinates contained in the bounding box. /// Vector containing the highest X and Y coordinates contained in the rectangle.
/// </summary> /// </summary>
public Vector2 Max; public Vector2 Max;