Skip to content

Instantly share code, notes, and snippets.

View awinterbottom's full-sized avatar

Angie Winterbottom awinterbottom

  • Winterite Ltd
  • Sheffield, UK
View GitHub Profile
@awinterbottom
awinterbottom / birthday2017.html
Created November 1, 2017 12:10
Single-page birthday card for Jim, inspired by pre-show graphics from Bat Out Of Hell The Musical. Uses three.js for 3D mesh graphics, free "PC Senior" font for text.
<!doctype html>
<html>
<head>
<script src="http://threejs.org/build/three.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g=" crossorigin="anonymous"></script>
<script>
$(document).ready(function() {
//initialize attributes
var WIDTH = 400, HEIGHT = 300;
var VIEW_ANGLE = 75, ASPECT = WIDTH / HEIGHT, NEAR = 1, FAR = 10000;