wow
such voronoi
html5
many cells
very convexity
so tessellation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Sample usage: | |
//var pngGen = require('./png-gen').loadImage('heightmap.png'); | |
//Assign this as your voxel.js generate function. | |
var fs = require('fs'), | |
PNG = require('pngjs').PNG, | |
theImage, | |
heightMod = 32 | |
function loadImage(url, cb){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = require('url') | |
var websocket = require('websocket-stream') | |
var engine = require('voxel-engine') | |
var duplexEmitter = require('duplex-emitter') | |
console.log('starting', 1) | |
var socket = websocket('ws://' + url.parse(window.location.href).host) | |
var emitter = duplexEmitter(socket) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var perlin = require('perlin').noise.perlin3 | |
var fill = require('ndarray-fill') | |
var continuous = require('ndarray-continuous') | |
var stl = require('ndarray-stl') | |
var zeros = require('zeros') | |
var scale = 0.075 | |
var threshold = 0.125 | |
var field = continuous({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# - updates ubuntu | |
# - creates a sudo-able non-root user called $user_name (for logging into the server later and doing stuff) | |
# - sets up ssh keys for that user by copying the over from /root/.ssh | |
# - disables ssh root login (that's what $user_name is for) | |
# - creates a system user "taco" for the taco process to run as | |
# - sets up basic iptables firewall | |
# | |
printf '\e[1;34m%b\e[m' "\nUpdating the system...\n" | |
apt-get -y -qq update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// the master audio context | |
var context = webkitAudioContext || AudioContext | |
var master = new context() | |
// for intro to this module, see http://requirebin.com/?gist=6093984 | |
var jsynth = require('jsynth'); | |
// for intro to this module, see http://requirebin.com/?gist=6094039 | |
var oscillators = require('oscillators') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var graph = require('ngraph.generators').noLinks(142); | |
graph.forEachNode(assignNiceColor); | |
var clickMe = document.createElement('h1') | |
clickMe.setAttribute('style', 'font-family: Helvetica, Arial; font-weight: 200; text-align: center; margin-top: 150px;') | |
clickMe.innerHTML = 'CLICK ME' | |
document.body.appendChild(clickMe) | |
var svg = require('ngraph.vivasvg')(graph); | |
svg.nodeTemplate("<circle r='5' fill='{{node.color}}'></circle>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var observer = require('continuous-observer') | |
var cave = require('cave-automata-2d') | |
var fill = require('ndarray-fill') | |
var zero = require('zeros') | |
var raf = require('raf') | |
var canvas = document.createElement('canvas') | |
var ctx = canvas.getContext('2d') | |
// Set up the controls, so that we can control |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inherits = require('inherits'); | |
var Game = require('crtrdg-gameloop'); | |
var Entity = require('crtrdg-entity'); | |
var Keyboard = require('crtrdg-keyboard'); | |
inherits(Player, Entity); | |
function Player(options){ | |
this.position = { | |
x: options.position.x, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var shell = require('mesh-viewer')(); | |
var vport = require('gl-viewport')(shell, { viewMode: 'ortho' }); | |
require('keydown')('P').on('pressed', function () { | |
var mode = vport.viewMode === 'ortho' ? 'perspective' : 'ortho'; | |
vport.setViewMode(mode); | |
}) | |
var mesh; | |
shell.on('viewer-init', function () { |