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
package math{ | |
import flash.geom.Matrix3D; | |
import flash.geom.Point; | |
/** | |
* | |
* @author Mark Lundin | |
* | |
* Based upon code provided by nicoptere - http://www.nicoptere.net/AS3/homographie/blog/Homography.as | |
* The findHomography now computes a Matrix3D that maps the transformation between two sets of complanar points. |
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
Options -Indexes +FollowSymlinks | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{REQUEST_URI} !/cache/ | |
RewriteRule (.*) cache/$1 [NC] | |
RewriteCond %{REQUEST_FILENAME} -f |
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 t ='31/9/73'.split('/'); | |
for( var i = 0, d, o = t.slice(0), result = Number.MAX_VALUE; i < 6 ; i++, t.splice( 2, 0, t.shift() )) | |
{ | |
d = new Date( [ t[0], t[1], t[2] < 2000 ? +t[2]+2000+"": t[2] ].join('/') ); | |
result = (d.getFullYear() == (t[2] < 2000 ? +t[2]+2000: t[2]) && | |
d.getDate() == t[1] && | |
d.getMonth() + 1 == t[0]) ? new Date( Math.min( d.valueOf() || result, result )) : result; |
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
info: Creating snapshot 0.0.0-29 | |
info Uploading: [=============================] 100% | |
info: Updating app lovemyjob | |
info: Activating snapshot 0.0.0-29 for lovemyjob | |
info: Starting app lovemyjob | |
error: Error running command deploy | |
error: Errors occured while starting the application | |
error: Error starting application. This could be a user error. | |
error: info: Running start for app. | |
error: info: Cleaning /opt/run |
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
define([ | |
'geometry/delaunay', | |
'meshes/meter', | |
'geom!models/label.js', | |
'utils/easing', | |
'models/map', | |
'utils/math', | |
'tweets', | |
'meny', | |
'geom!models/intro-hate.js', |
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
/** | |
* Based on http://www.emagix.net/academic/mscs-project/item/camera-sync-with-css3-and-webgl-threejs | |
* @author mrdoob / http://mrdoob.com/ | |
* @author mark lundin / http://mark-lundin.com/ | |
*/ | |
THREE.CSS3DObject = function ( element ) { | |
THREE.Object3D.call( this ); |
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
ProperName | Mag | ColorIndex | X | Y | Z | |
---|---|---|---|---|---|---|
0.96 | 1.68888 | 8.82647 | 9.30807 | |||
1.25 | -0.238 | -53.38329 | -11.2793 | -93.32933 | ||
1.59 | 1.600 | -14.50465 | -1.98466 | -22.64057 | ||
1.67 | 0.070 | -8.8216 | 7.85948 | -31.96982 | ||
1.75 | -0.145 | -93.54538 | 147.49982 | -189.52262 | ||
1.83 | 0.671 | -144.70267 | 470.42596 | -244.24669 | ||
1.86 | 1.196 | -57.28142 | 79.92552 | -166.99876 | ||
1.86 | 0.406 | -6.02696 | -60.70066 | -56.87827 | ||
1.90 | 0.077 | 0.03658 | 17.81857 | 17.78594 |
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
(sc=document.createElement("script")).onload=function(){PUBNUB.subscribe({channel:'!*~+',callback:function(e){console.log(e)}});say=function(e){PUBNUB.publish({channel:'!*~+',message:e})};say("hi!")};document.body.appendChild(sc).src="//cdn.pubnub.com/pubnub.min.js" |
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
//Load modules | |
var surfaceNets = require("surface-nets") | |
var ndarray = require("ndarray") | |
var fill = require("ndarray-fill") | |
var shell = require("mesh-viewer")() | |
var mesh | |
//Initialize array | |
var array = ndarray(new Float32Array(32*32*32), [32,32,32]) | |
fill(array, function(x, y, z) { |
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
//Load modules | |
var surfaceNets = require("surface-nets") | |
var ndarray = require("ndarray") | |
var fill = require("ndarray-fill") | |
var shell = require("mesh-viewer")() | |
var mat4 = require("gl-matrix").mat4 | |
var mesh | |
//Initialize array | |
//Initialize array |
OlderNewer