added vec3 skeleton

This commit is contained in:
Noel Berry 2021-02-21 16:29:13 -08:00
parent ac58379de8
commit 8491d2a56b

23
include/blah/math/vec3.h Normal file
View File

@ -0,0 +1,23 @@
#pragma once
namespace Blah
{
struct Vec3
{
float x;
float y;
float z;
Vec3()
: x(0)
, y(0)
, z(0)
{}
Vec3(float x, float y, float z)
: x(x)
, y(y)
, z(z)
{}
};
}