Fix missing include
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user