2020-02-21 08:03:47 +00:00
|
|
|
|
using MoonTools.Structs;
|
2020-01-02 09:40:03 +00:00
|
|
|
|
|
2020-02-21 08:03:47 +00:00
|
|
|
|
namespace MoonTools.Bonk
|
2020-01-02 09:40:03 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IHasAABB2D
|
|
|
|
|
{
|
|
|
|
|
AABB AABB { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns a bounding box based on the shape.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="transform">A Transform for transforming the shape vertices.</param>
|
|
|
|
|
/// <returns>Returns a bounding box based on the shape.</returns>
|
|
|
|
|
AABB TransformedAABB(Transform2D transform);
|
|
|
|
|
}
|
|
|
|
|
}
|