2024-08-05 21:26:31 -05:00

15 lines
178 B
C

#pragma once
#include "matrices.h"
struct sphere {
struct mat4x4 transform;
};
inline static struct sphere sphere()
{
return (struct sphere){
mat4x4_identity()
};
}