Implemented getHeight

This commit is contained in:
2016-05-26 13:21:14 +02:00
parent 56e174ae2f
commit 4c613b606a
6 changed files with 20 additions and 5 deletions
+5
View File
@@ -80,6 +80,11 @@ bool Vec3f::operator!=(const Vec3f & other)
return x != other.x & y != other.y & z != other.z;
}
Vec3f Vec3f::operator*(const float & other)
{
return Vec3f(x*other, y*other, z*other);
}
Vec3f Vec3f::cross(const Vec3f & other)
{
return Vec3f(