Skip to content

Instantly share code, notes, and snippets.

@uforange
uforange / index.html
Created November 30, 2016 22:06
200C 4th assignment
<html>
<script src = "https://rawgit.com/wolftype/200c/gh-pages/js/gfx.js"></script>
<script type="text/javascript">
var app = new GFX.App();
var tri;
app.onInit = function(){
//Quaternions
@uforange
uforange / index.html
Last active November 6, 2016 06:18
200c 3rd assignment
<html>
<script src = "https://rawgit.com/wolftype/200c/gh-pages/js/gfx.js"></script>
<script type="text/javascript">
var app = new GFX.App();
var box;
/// On Initialization of the WebGL Application (this happens once)
app.onInit = function(){
@uforange
uforange / index.html
Last active October 12, 2016 22:17
200C 2nd Assignment
<html>
<script type="text/javascript" src="https://rawgit.com/patriciogonzalezvivo/glslCanvas/master/build/GlslCanvas.js"></script>
<body>
<canvas class="glslCanvas" data-fragment="
#ifdef GL_ES
precision mediump float;
#endif
uniform vec2 u_resolution;
uniform vec2 u_mouse;
@uforange
uforange / index.html
Last active October 5, 2016 22:23
200C 1st Assignment
<html>
<script type="text/javascript" src="https://rawgit.com/patriciogonzalezvivo/glslCanvas/master/build/GlslCanvas.js"></script>
<body>
<canvas class="glslCanvas" data-fragment="
#ifdef GL_ES
precision mediump float;
#endif
uniform vec2 u_resolution;
uniform vec2 u_mouse;