Skip to content

Tree as of 2020 03 21

Daniel edited this page Mar 20, 2020 · 3 revisions

$ tree common server client common ├── Cargo.toml └── src ├── codec.rs ├── cursor.rs ├── dodeca.rs ├── graph.rs ├── id.rs ├── lib.rs ├── math │   ├── isometry.rs │   └── mod.rs ├── proto.rs └── world.rs server ├── Cargo.toml └── src ├── config.rs ├── lib.rs ├── main.rs └── sim.rs client ├── Cargo.toml ├── shaders │   ├── common.h │   ├── fullscreen.vert │   ├── sky.frag │   ├── surface-extraction │   │   ├── common.h │   │   ├── count.comp │   │   ├── emit.comp │   │   ├── prefix-sum.comp │   │   └── surface.h │   ├── voxels.frag │   └── voxels.vert └── src ├── config.rs ├── graphics │   ├── base.rs │   ├── core.rs │   ├── draw.rs │   ├── loader.rs │   ├── lru_table.rs │   ├── mod.rs │   ├── png_array.rs │   ├── sky.rs │   ├── tests.rs │   ├── voxels │   │   ├── mod.rs │   │   ├── surface_extraction.rs │   │   ├── surface.rs │   │   └── tests.rs │   └── window.rs ├── main.rs ├── net.rs └── sim.rs

Clone this wiki locally