Fork of mellinoe/ImGui.NET, an ImGui wrapper for .NET, which includes access to internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
482 B

using System.Numerics;
namespace ImGuiNET
{
public struct ImRect
{
public Vector2 Min;
public Vector2 Max;
public ImRect(Vector2 min, Vector2 max)
{
Min = min;
Max = max;
}
public bool Contains(Vector2 p)
{
return p.X >= Min.X && p.Y >= Min.Y && p.X < Max.X && p.Y < Max.Y;
}
public Vector2 GetSize()
{
return Max - Min;
}
}
}