I can't get the flags to be centered inside their states...
Forked from:
<html> | |
<body> | |
<h1><a href="javascript:window.location=(window.location.hostname.indexOf('gist')>-1?'http://bl.ocks.org':'http://gist.github.com')+window.location.pathname;">gist/bl.ocks Toggle Bookmarklet</a></h1> | |
</body> | |
</html> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> | |
<script src="http://d3js.org/d3.v2.min.js"></script> | |
<link type="text/css" rel="stylesheet" href="style.css"/> | |
<style type="text/css"> | |
circle { | |
stroke: #000; |
I can't get the flags to be centered inside their states...
Forked from:
// example generated JavaScript | |
var buffer; | |
function init(gl) | |
{ | |
var myData = new DavidsFloatData([1., 2., 3., 4.]); | |
buffer = gl.createBuffer(); // corresponding C function is glGenBuffers(GLsizei n, GLuint *buffers) | |
gl.bindBuffer(GL_ARRAY_BUFFER, buffer); |
// example generated C++ | |
class GraphicsApp | |
{ | |
int bufferID; | |
void init() | |
{ | |
float buffer[] = {1., 2., 3., 4.}; |