This file contains hidden or 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
mocha 44731 | |
chai 17944 | |
grunt 17447 | |
should 11882 | |
grunt-contrib-jshint 11466 | |
gulp 8619 | |
istanbul 7374 | |
tape 7313 | |
sinon 6851 | |
grunt-contrib-clean 6807 |
This file contains hidden or 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 mesh | |
shell.on("viewer-init", function() { | |
mesh = shell.createMesh(require("bunny")) | |
}) | |
shell.on("gl-render", function() { | |
mesh.draw() | |
}) |
This file contains hidden or 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
// See comments below. | |
// This code sample and justification brought to you by | |
// Isaac Z. Schlueter, aka isaacs | |
// standard style | |
var a = "ape", | |
b = "bat", | |
c = "cat", | |
d = "dog", |