A checklist for learning React - Fork it and start ticking off topics!
- use-cases of React
- JavaScript basics for React
- immutability / data management without mutations
- updating properties of objects
3D solar system created using Three.js
A Pen by Wael Yasmina on CodePen.
3D solar system created using Three.js
A Pen by Wael Yasmina on CodePen.
| /** | |
| * createTerrainMatrix | |
| * @TODO: create the matrix of terrains - need to add 9 bits of terrain | |
| */ | |
| createTerrainMatrix:function(scene, perlinNoise){ | |
| //every 100px on the z axis, add a bit of ground | |
| for ( var z= 100; z > -200; z-=100 ) { | |