Skip to content

Instantly share code, notes, and snippets.

View theo-armour's full-sized avatar
💭
happy

Theo Armour theo-armour

💭
happy
View GitHub Profile
@theo-armour
theo-armour / Thrweets
Created March 2, 2012 03:01
3D Tweets
<!doctype html>
<html lang="en">
<head>
<title>thrweets</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
</head>
<body>
<script src="../../js/Detector.js"></script>
<script src="../../js/Stats.js"></script>
@theo-armour
theo-armour / gist:4571359
Created January 19, 2013 08:16
show hide
<!doctype html>
<html>
<head>
<title>show hide</title>
<meta charset='UTF-8'>
<meta name="author" content="Theo Armour">
</head>
<body>
<script type='text/javascript'>
document.body.style.font = 'bold 12pt monospace';
http://threejs.org/docs/58/#Reference/Extras.Geometries/CircleGeometry
CircleGeometry(radius, segments, thetaStart, thetaLength)
radius — Radius of the circle, default = 50.
segments — Number of segments (triangles), minimum = 3, default = 8.
thetaStart — Start angle for first segment, default = 0 (three o'clock position).
thetaLength — Circumference of the circle, default = 2*Pi (360°).
CubeGeometry(width, height, depth, widthSegments, heightSegments, depthSegments)
width — Width of the sides on the X axis.
@theo-armour
theo-armour / copyrights-license-credits.md
Last active December 25, 2015 16:09
Copyrights, Licenses & Credits

#Copyrights, Licenses & Credits

Leap Motion

http://leapmotion.com

Copyright © 2013 Leap Motion, Inc. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

<!doctype html>
<html lang=en >
<head>
<title>Howdy</title>
<meta charset=utf-8 />
<meta name=author content='Theo Armour' />
</head>
<body>
<script>
@theo-armour
theo-armour / 00 TA GHMD Cheatsheet.md
Last active October 10, 2017 04:55
TA GHMD Cheatsheet.md

Header Tags

#Header 1 ##Header 2 ###Header 3 ####Header 4

Bold and Italics Bold Italicize or italicize

<!doctype html>
<html lang=en >
<head>
<title></title>
<meta charset=utf-8 />
</head>
<body>
<script>
// copyright 2015 Theo Armour ~ MIT License
<!doctype html>
<html lang=en >
<head>
<title>Template Three.js Basic R1</title>
<meta charset=utf-8 />
<meta name=viewport content='width=device-width,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0' />
</head>
<body>
<script src=http://mrdoob.github.io/three.js/build/three.min.js ></script>
<script src=http://mrdoob.github.io/three.js/examples/js/controls/OrbitControls.js ></script>
@theo-armour
theo-armour / index.html
Last active September 1, 2015 03:40
simple html
<!doctype html>
<html lang=en >
<head>
<title>Howdy</title>
<meta charset=utf-8 />
</head>
<body>
<script>
document.body.style.cssText = ' font: bold 12pt monospace; ';