Fix missing include
This commit is contained in:
parent
cb485cb20b
commit
20f000c8dc
|
|
@ -435,7 +435,7 @@ namespace Nz
|
||||||
* \param scale The scalar to multiply components with
|
* \param scale The scalar to multiply components with
|
||||||
*/
|
*/
|
||||||
template<typename T>
|
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);
|
return Vector3(x * scale, y * scale, z * scale);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
#include <Nazara/Core/Color.hpp>
|
#include <Nazara/Core/Color.hpp>
|
||||||
#include <Nazara/Math/Vector2.hpp>
|
#include <Nazara/Math/Vector2.hpp>
|
||||||
#include <Nazara/Math/Vector3.hpp>
|
#include <Nazara/Math/Vector3.hpp>
|
||||||
|
#include <Nazara/Math/Vector4.hpp>
|
||||||
|
|
||||||
namespace Nz
|
namespace Nz
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue