├── .gitignore ├── LICENSE ├── README.md ├── Three.js ├── TrackballControls.js ├── bump.html ├── combo_demo.html ├── dots.png ├── flat.png ├── index0.html ├── index14.html ├── index2.html ├── index3.html ├── index6.html ├── spec01.html └── spec02.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/README.md -------------------------------------------------------------------------------- /Three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/Three.js -------------------------------------------------------------------------------- /TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/TrackballControls.js -------------------------------------------------------------------------------- /bump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/bump.html -------------------------------------------------------------------------------- /combo_demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/combo_demo.html -------------------------------------------------------------------------------- /dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/dots.png -------------------------------------------------------------------------------- /flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/flat.png -------------------------------------------------------------------------------- /index0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/index0.html -------------------------------------------------------------------------------- /index14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/index14.html -------------------------------------------------------------------------------- /index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/index2.html -------------------------------------------------------------------------------- /index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/index3.html -------------------------------------------------------------------------------- /index6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/index6.html -------------------------------------------------------------------------------- /spec01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/spec01.html -------------------------------------------------------------------------------- /spec02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetar/three.js-normal-map-0/HEAD/spec02.html --------------------------------------------------------------------------------