├── .gitignore ├── Go └── src │ └── GPUTerrain │ ├── Camera │ └── camera.go │ ├── Geometry │ └── geometry.go │ ├── OpenGL │ └── openGL.go │ ├── fragmentShader.frag │ ├── gpuTerrain.go │ ├── marchingCubes.comp │ └── vertexShader.vert ├── README.md ├── Screenshots ├── cube_sphere_cylinder_example1.png ├── cube_sphere_cylinder_example2.png ├── wireframe_example1.png └── wireframe_example2.png ├── bin └── GPUTerrain └── compile.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/.gitignore -------------------------------------------------------------------------------- /Go/src/GPUTerrain/Camera/camera.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Go/src/GPUTerrain/Camera/camera.go -------------------------------------------------------------------------------- /Go/src/GPUTerrain/Geometry/geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Go/src/GPUTerrain/Geometry/geometry.go -------------------------------------------------------------------------------- /Go/src/GPUTerrain/OpenGL/openGL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Go/src/GPUTerrain/OpenGL/openGL.go -------------------------------------------------------------------------------- /Go/src/GPUTerrain/fragmentShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Go/src/GPUTerrain/fragmentShader.frag -------------------------------------------------------------------------------- /Go/src/GPUTerrain/gpuTerrain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Go/src/GPUTerrain/gpuTerrain.go -------------------------------------------------------------------------------- /Go/src/GPUTerrain/marchingCubes.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Go/src/GPUTerrain/marchingCubes.comp -------------------------------------------------------------------------------- /Go/src/GPUTerrain/vertexShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Go/src/GPUTerrain/vertexShader.vert -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/cube_sphere_cylinder_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Screenshots/cube_sphere_cylinder_example1.png -------------------------------------------------------------------------------- /Screenshots/cube_sphere_cylinder_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Screenshots/cube_sphere_cylinder_example2.png -------------------------------------------------------------------------------- /Screenshots/wireframe_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Screenshots/wireframe_example1.png -------------------------------------------------------------------------------- /Screenshots/wireframe_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/Screenshots/wireframe_example2.png -------------------------------------------------------------------------------- /bin/GPUTerrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/bin/GPUTerrain -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauriceGit/Marching_Cubes_on_GPU/HEAD/compile.sh --------------------------------------------------------------------------------