mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-05-25 15:39:50 +00:00
delete Vector3.cpp and rm trailing space
This commit is contained in:
@@ -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};
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user