Skip to content

Instantly share code, notes, and snippets.

@albach
Created April 30, 2018 08:49
Show Gist options
  • Save albach/4cd4d81312535e3bc44a58d449614504 to your computer and use it in GitHub Desktop.
Save albach/4cd4d81312535e3bc44a58d449614504 to your computer and use it in GitHub Desktop.
function onKeyDown(event){
var maxPoint = new Point(view.size.width, view.size.height);
var randomPoint = Point.random();
var point = maxPoint * randomPoint;
new Path.Circle(point, 10).fillColor = "pink";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment