Skip to content

Instantly share code, notes, and snippets.

@piratefsh
Created February 6, 2016 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piratefsh/11add2de6155670716b2 to your computer and use it in GitHub Desktop.
Save piratefsh/11add2de6155670716b2 to your computer and use it in GitHub Desktop.
function onGLC(glc) {
glc.loop();
// glc.size(400, 400);
glc.setDuration(4);
// glc.setFPS(20);
glc.setMode('single');
glc.setEasing(false);
var list = glc.renderList,
width = glc.w,
height = glc.h,
color = glc.color;
glc.styles.lineWidth = 6;
glc.styles.backgroundColor = 'rgba(0, 0, 70, 200)';
var n = 10;
var min = 10;
var max = Math.sqrt((width/2*width/2)/2)*2;
// your code goes here:
for(var i = 0; i < n; i++){
var p = (Math.sqrt(i/2)/Math.sqrt(n/2));
console.log(p);
list.addCircle({
x: width/2,
y: height/2,
strokeStyle: [ 'rgba(200,100, 200, 0.2)', 'rgba(100,200, 200, 1)'],
stroke: true,
fill: false,
radius: [min, max],
phase: p
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment