Files
CrystalPoint/Vector.h
T
2016-05-20 13:00:04 +02:00

40 lines
481 B
C++

#pragma once
class Vec3f
{
public:
union
{
struct
{
float x, y, z;
};
float v[3];
};
Vec3f();
Vec3f(Vec3f &other);
Vec3f(float x, float y, float z);
float& operator [](int);
Vec3f operator + (const Vec3f &other);
Vec3f operator / (float value);
};
class Vec2f
{
public:
union
{
struct
{
float x, y;
};
float v[2];
};
Vec2f();
Vec2f(float x, float y);
Vec2f(Vec2f &other);
float& operator [](int);
Vec2f operator + (const Vec2f &other);
};