Method to access height map.
Slice!(double*, 2) containing surface`s height map with dimensions nx * ny
foreach (i; 0 .. surface.nx) { foreach (j; 0 .. surface.ny) { surface.z[i][j] = 0; } }
See Implementation
Method to access height map.