This commit is contained in:
MarcEricMartel
2021-11-27 14:14:05 -05:00
parent 8e222f39a9
commit de7945038c
6 changed files with 31 additions and 14 deletions

View File

@@ -42,7 +42,7 @@ void Array3d<T>::Set(int x, int y, int z, T type) {
template <class T>
T Array3d<T>::Get(int x, int y, int z) const { return m_array[To1dIndex(x, y, z)]; }
template <class T>
void Array3d<T>::Reset(T type) {
for (int i = 0; i < m_x * m_y * m_z; ++i)