delete Vector3.cpp and rm trailing space

This commit is contained in:
Clément Le Bihan
2021-05-26 18:42:18 +02:00
parent 07e2d5bc35
commit dee8c554c3
2 changed files with 1 additions and 14 deletions
-13
View File
@@ -1,13 +0,0 @@
//
// Created by cbihan on 26/05/2021.
//
#include "Vector3.hpp"
namespace BBM
{
RAY::Vector3 operator*(const Vector3f &v)
{
return {v.x, v.y, v.z};
}
}
+1 -1
View File
@@ -154,7 +154,7 @@ namespace BBM
return (point * this) / std::pow(this->magnitude(), 2) * this;
}
explicit operator RAY::Vector3() const { return {this->x, this->y, this->z };}
explicit operator RAY::Vector3() const { return {this->x, this->y, this->z};}
};
typedef Vector3<float> Vector3f;