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);
}