Fix missing include

This commit is contained in:
SirLynix 2023-07-23 11:12:05 +02:00
parent cb485cb20b
commit 20f000c8dc
2 changed files with 2 additions and 1 deletions

View File

@ -435,7 +435,7 @@ namespace Nz
* \param scale The scalar to multiply components with
*/
template<typename T>
constexpr Vector3<T> Vector3<T>::operator*(T scale) const
constexpr Vector3<T> Vector3<T>::operator*(T scale) const
{
return Vector3(x * scale, y * scale, z * scale);
}

View File

@ -10,6 +10,7 @@
#include <Nazara/Core/Color.hpp>
#include <Nazara/Math/Vector2.hpp>
#include <Nazara/Math/Vector3.hpp>
#include <Nazara/Math/Vector4.hpp>
namespace Nz
{