9cfd5b2211
There's a lot of code at play here, so I haven't tested it yet. A good chunk of the components are available though.
29 lines
668 B
C#
29 lines
668 B
C#
namespace Roblox.DataTypes
|
|
{
|
|
public struct Rect
|
|
{
|
|
public readonly Vector2 Min;
|
|
public readonly Vector2 Max;
|
|
|
|
public float Width => (Max - Min).X;
|
|
public float Height => (Max - Min).Y;
|
|
|
|
public Rect(Vector2? min, Vector2? max)
|
|
{
|
|
Min = min ?? Vector2.Zero;
|
|
Max = max ?? Vector2.Zero;
|
|
}
|
|
|
|
public Rect(float minX, float minY, float maxX, float maxY)
|
|
{
|
|
Min = new Vector2(minX, minY);
|
|
Max = new Vector2(maxX, maxY);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Join(", ", Min, Max);
|
|
}
|
|
}
|
|
}
|