Some cleaning 😢

This commit is contained in:
Thomas FORGIONE
2015-11-13 10:36:54 +01:00
parent 59518eb702
commit 5e0a6c3121
113 changed files with 433 additions and 67 deletions

View File

@@ -0,0 +1,7 @@
module.exports.index = function(req, res) {
res.setHeader('Content-Type', 'text/html');
res.render('index.jade', res.locals, function(err, result) {
res.send(result);
});
};

View File

@@ -0,0 +1,3 @@
module.exports = {
'/multisphere': 'index'
};

View File

@@ -0,0 +1,19 @@
extends ../../../views/main.jade
block title
title #{title} - Multi-sphere
block extrajs
script(src="/static/js/three.min.js")
script(src="/static/js/l3d.min.js")
script(src="/static/js/multisphere.min.js")
block content
h2 Multiresolution sphere
p.
This is the first test of multi-resolution. In fact, it's not really one
multi-resolution sphere but many spheres with different resolutions. You
can change resolution by clicking on the canvas.
#container