Skip to content

Instantly share code, notes, and snippets.

@rikkimax
Created August 27, 2016 03:18
Show Gist options
  • Save rikkimax/f23c32556a4bc3a4f7b47915ca5f682a to your computer and use it in GitHub Desktop.
Save rikkimax/f23c32556a4bc3a4f7b47915ca5f682a to your computer and use it in GitHub Desktop.
var color;
def init(myColor) {
color = myColor;
}
def draw() {
var startx, starty, endx, endy;
startx = Widget.x;
starty = Widget.y;
endx = startx + Widget.width;
endy = starty + Widget.height;
Draw.Pen(color);
Draw.Rectangle(startx, starty, endx, endy);
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment