Azkellas

Results 3 issues of Azkellas

The GameRunner class is now abstract, replaced by MultiplayerGameRunner. I updated it [here](https://gist.github.com/Azkellas/e3677e1403ca6246dcef3540f7460103) if you want to see. I disabled the refereeInput part ('-d') option. The MultiplayerGameRunner has a setSeed()...

The view proj matrices in the course don't provide far clipping. Projecting a point at dist = far_plane returns 0.33. After comparing with [wgpu examples](https://github.com/gfx-rs/wgpu/blob/trunk/examples/src/water/mod.rs#L97), for the same parameters, the...

```rust // x. for y in min_cell[1]..=max_cell[1] { for z in min_cell[2]..=max_cell[2] { let cell = [0, y, z]; let cell_pos = grid.get_cell_center(&cell); raycasts_done += 1; if let Some(distance) =...