https://github.com/danieldelcore/experiment-3-the-blob
Sphere Geometry Sine Waves, threejs
https://github.com/danieldelcore/experiment-3-the-blob
geometry graphics javascript math threejs webgl
Last synced: 21 days ago
JSON representation
Sphere Geometry Sine Waves, threejs
- Host: GitHub
- URL: https://github.com/danieldelcore/experiment-3-the-blob
- Owner: danieldelcore
- Created: 2016-05-25T07:28:11.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-08-25T04:09:36.000Z (8 months ago)
- Last Synced: 2025-02-10T07:43:09.433Z (3 months ago)
- Topics: geometry, graphics, javascript, math, threejs, webgl
- Language: JavaScript
- Homepage: http://danieldelcore.com/lab/3
- Size: 189 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Experiment 3

## The Blob!
I'm still discovering the infinite applications of the sine wave. This time, applied to a SphereGeometry.
A wave is calculated by measuring the distance between each vertex on the sphere and a Vector3 aptly named 'warpVector'.Play around with the *size* and *speed* variables and see how it behaves.
[Live demo](http://danieldelcore.com/lab/3)
## Initial setup
- `npm install --global gulp-cli` : Install gulp globally
- `npm i` Install dependencies## Building for development
- `gulp dev` : Build files will be output to the '.tmp' directory.## Building for production
- `gulp build` : Build files will be output to the 'deploy' directory.## Pushing a new release
- `gulp build` : Compile local changes
- `git add .` : Stage changes
- `git commit -m"change description"` : comment on your changes
- `git tag -a v1.0.0 -m "Change description"` : Add a new tagged release
- `git push --follow-tags` : Push staged changes and tags