├── .project ├── README.md ├── img ├── height_normal.png ├── lightmap.jpg ├── multilayer3.jpg └── stencils.jpg ├── index.html ├── js ├── FirstPersonControls.js ├── SubDRect.js ├── jquery.js ├── main.js └── three.js └── shaders ├── landscape_ps.txt └── landscape_vs.txt /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/README.md -------------------------------------------------------------------------------- /img/height_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/img/height_normal.png -------------------------------------------------------------------------------- /img/lightmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/img/lightmap.jpg -------------------------------------------------------------------------------- /img/multilayer3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/img/multilayer3.jpg -------------------------------------------------------------------------------- /img/stencils.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/img/stencils.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/index.html -------------------------------------------------------------------------------- /js/FirstPersonControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/js/FirstPersonControls.js -------------------------------------------------------------------------------- /js/SubDRect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/js/SubDRect.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/js/main.js -------------------------------------------------------------------------------- /js/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/js/three.js -------------------------------------------------------------------------------- /shaders/landscape_ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/shaders/landscape_ps.txt -------------------------------------------------------------------------------- /shaders/landscape_vs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharling/webgl-lod-landscape/HEAD/shaders/landscape_vs.txt --------------------------------------------------------------------------------