Midway hittable list inclusion

This commit is contained in:
David 2021-08-21 00:20:51 +02:00
commit 8c1324c074
6 changed files with 141 additions and 2 deletions

View file

@ -21,7 +21,7 @@ struct vec3 {
/* Overriden operators */
// - operator. Not to be confused with substraction
vec3 operator-()
vec3 operator-() const
{
return vec3(-x, -y, -z);
}