2024-02-29 11:22:52 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// A 2d vector of double.
|
|
|
|
typedef struct {
|
|
|
|
double x, y;
|
|
|
|
} Vec2;
|
|
|
|
|
|
|
|
|
|
|
|
Vec2 vec2_Add(Vec2 x, Vec2 y);
|
|
|
|
Vec2 vec2_Scale(Vec2 v, double scale);
|
|
|
|
|
|
|
|
|
|
|
|
// A 2d box of double.
|
|
|
|
typedef struct {
|
|
|
|
Vec2 lefttop;
|
|
|
|
Vec2 size;
|
|
|
|
} Box2;
|
|
|
|
|
|
|
|
|
|
|
|
// Intersection test.
|
|
|
|
bool box2_Intersects(const Box2 x, const Box2 y, Box2 *out_intersection);
|
|
|
|
|
|
|
|
|
2024-02-29 16:17:55 +08:00
|
|
|
typedef struct {
|
|
|
|
uint64_t microseconds;
|
|
|
|
} Duration;
|
|
|
|
|
|
|
|
static inline double duration_Seconds(const Duration t) { return ((double)t.microseconds) / 1000.0 / 1000.0; }
|
|
|
|
static inline double duration_Milliseconds(const Duration t) { return ((double)t.microseconds) / 1000.0; }
|
|
|
|
|
|
|
|
|
2024-02-29 11:22:52 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|