15 lines
178 B
C
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()
|
|
};
|
|
}
|