LADXHD/Base/Box.cs

74 lines
2.1 KiB
C#
Raw Normal View History

2023-12-14 22:21:22 +00:00
using Microsoft.Xna.Framework;
namespace ProjectZ.Base
{
public struct Box
{
public static readonly Box Empty = new Box();
public float X;
public float Y;
public float Z;
public float Width;
public float Height;
public float Depth;
public float Left => X;
public float Right => X + Width;
public float Back => Y;
public float Front => Y + Height;
public float Top => Z + Depth;
public float Bottom => Z;
public Vector2 Center => new Vector2(X + Width / 2, Y + Height / 2);
public RectangleF Rectangle() => new RectangleF(X, Y, Width, Height);
public Box(float x, float y, float z, float width, float height, float depth)
{
X = x;
Y = y;
Z = z;
Width = width;
Height = height;
Depth = depth;
}
public bool Intersects(Box value)
{
return value.Left < Right && Left < value.Right &&
value.Back < Front && Back < value.Front &&
value.Bottom < Top && Bottom < value.Top;
}
public bool Contains(Box value)
{
return Left <= value.Left && value.Right <= Right &&
Back <= value.Back && value.Front <= Front &&
Bottom <= value.Bottom && value.Top <= Top;
}
public bool Contains(Vector2 value)
{
return Left <= value.X && value.X <= Right &&
Back <= value.Y && value.Y <= Front;
}
public static bool operator ==(Box a, Box b)
{
return a.X == b.X && a.Y == b.Y && a.Z == b.Z &&
a.Width == b.Width && a.Height == b.Height && a.Depth == b.Depth;
}
public static bool operator !=(Box a, Box b)
{
return a.X != b.X || a.Y != b.Y || a.Z != b.Z &&
a.Width != b.Width || a.Height != b.Height || a.Depth != b.Depth;
}
}
}