Skip to content

Instantly share code, notes, and snippets.

@markdurrant
Created October 11, 2012 11:44
Show Gist options
  • Save markdurrant/3871808 to your computer and use it in GitHub Desktop.
Save markdurrant/3871808 to your computer and use it in GitHub Desktop.
Sample JS m6 d6 syntax highlighting test
for (var c=0; c<21; c++){
for (var i=0; i<21; i++){
myCircle = new Path.Circle(new Point(x, y), (Math.random()*35));
myCircle.fillColor = "hsl("+ hue + ",100%,50%)";
x = x+20;
hue = (Math.random()*120)+320;
myCircle.opacity =0.8 ;
//myCircle.blendMode = 'average';
}
y= y+20;
x= 0;
r = r -2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment