You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
threedee/stuff/objects/vector2.h

18 lines
208 B

#pragma once
/*
vector2s hold 2D cartesian coordinates
*/
struct vector2
{
float x, y;
vector2()
{
this->x = 0.f;
this->y = 0.f;
}
vector2(float x_, float y_)
{
this->x = x_;
this->y = y_;
}
};