aboutsummaryrefslogtreecommitdiff
path: root/source/Vector4f.h
blob: ee1846adb467dad3d28db291469df51a45208b8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include"Matrix4f.h"
class Vector4f
{
public:
	float x, y, z, w;
	Vector4f();
	Vector4f(float x_, float y_, float z_, float w_);
	float dotProduct(const Vector4f& a);
	Vector4f crossProduct(const Vector4f& a);
	Vector4f multiplyMatrix(const Matrix4f& a);
};