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
<!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> |
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
<!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'; |
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
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. |
#Copyrights, Licenses & Credits
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.
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
<!doctype html> | |
<html lang=en > | |
<head> | |
<title>Howdy</title> | |
<meta charset=utf-8 /> | |
<meta name=author content='Theo Armour' /> | |
</head> | |
<body> | |
<script> |
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
<!doctype html> | |
<html lang=en > | |
<head> | |
<title></title> | |
<meta charset=utf-8 /> | |
</head> | |
<body> | |
<script> | |
// copyright 2015 Theo Armour ~ MIT License |
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
<!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> |
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
<!doctype html> | |
<html lang=en > | |
<head> | |
<title>Howdy</title> | |
<meta charset=utf-8 /> | |
</head> | |
<body> | |
<script> | |
document.body.style.cssText = ' font: bold 12pt monospace; '; |
OlderNewer