mirror of
https://github.com/zeldaret/ph
synced 2026-05-27 16:13:04 -04:00
14 lines
185 B
C++
14 lines
185 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "lib/math.h"
|
|
|
|
struct Cylinder {
|
|
Vec3p pos;
|
|
q20 size; // height and radius
|
|
|
|
bool Overlaps(Cylinder *other);
|
|
};
|