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
<html> | |
<head> | |
<title>Cube vs Pyramid Lighting Test</title> | |
<script type="text/javascript" src="http://processingjs.org/content/download/processing-js-1.3.0/processing-1.3.0.js"></script> | |
</head> | |
<body> | |
<canvas id="pjsCanvas"></canvas> | |
<script type="text/javascript"> | |
(function() { | |
var canvas = document.getElementById('pjsCanvas'); |
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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Cube vs Pyramid Lighting Test</title> | |
<script type="text/javascript" src="http://processingjs.org/content/download/processing-js-1.3.0/processing-1.3.0.js"></script> | |
</head> | |
<body> | |
<canvas id="pjsCanvas"></canvas> | |
<script type="text/javascript"> | |
(function() { |
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>Three.js : WebGL Canvas Texture Text Example</title> | |
<style type="text/css"> | |
* { | |
margin: 0; | |
padding: 0; | |
} | |
body { |
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>d3 load treemap json</title> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body { | |
font-family:Monospace; | |
background-color:#f0f0f0; | |
margin:0px; |
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>three.js canvas line gridlayout</title> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body { | |
font-family:Monospace; | |
background-color:#000000; | |
margin:0px; |
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>three.js webgl - canvas text billboarding</title> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body { | |
font-family:Monospace; | |
background-color:#000000; | |
margin:0px; |
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
import java.util.ArrayList; | |
float sampleRate; | |
ArrayList<Float> ttPositions = new ArrayList<Float>(); | |
int ttPositionIndex; | |
float ttPosition, pttPosition; |
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
// Generated by the Processing.js exporter for Processing IDE. | |
// https://github.com/fjenett/processingjstool | |
// this code was autogenerated from PJS | |
(function($p) { | |
var sampleRate = 0; | |
$p.ArrayList<Float> ttPositions = new $p.ArrayList<Float>(); | |
var ttPositionIndex = 0; |
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
#include "cinder/app/AppBasic.h" | |
#include "cinder/gl/gl.h" | |
#include "cinder/gl/Fbo.h" | |
#include "cinder/gl/Texture.h" | |
using namespace ci; | |
using namespace ci::app; | |
using namespace std; | |
class MirroredFboApp : public AppBasic { |
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
import ijeoma.motion.Motion; | |
import ijeoma.motion.tween.Tween; | |
import toxi.geom.Vec3D; | |
Tween t; | |
PFont f; | |
Vec3D v1, v2; |
OlderNewer