mirror of
https://github.com/NoelFB/blah.git
synced 2025-04-04 00:06:05 +08:00
19 lines
296 B
C++
19 lines
296 B
C++
#pragma once
|
|
#include <blah/math/vec2.h>
|
|
|
|
namespace Blah
|
|
{
|
|
struct Quad
|
|
{
|
|
Vec2 a;
|
|
Vec2 b;
|
|
Vec2 c;
|
|
Vec2 d;
|
|
|
|
Quad() {}
|
|
Quad(const Vec2& a, const Vec2& b, const Vec2& c, const Vec2& d)
|
|
: a(a), b(b), c(c), d(d) {}
|
|
|
|
void project(const Vec2& axis, float* min, float* max) const;
|
|
};
|
|
} |