Skip to content

Instantly share code, notes, and snippets.

@starakaj
Created July 8, 2021 20:53
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 starakaj/ce63c2e4becb8c3dfae03ed3f9d7f1f1 to your computer and use it in GitHub Desktop.
Save starakaj/ce63c2e4becb8c3dfae03ed3f9d7f1f1 to your computer and use it in GitHub Desktop.
function style1() {
mgraphics.set_source_rgba(1, 0, 0, 1);
}
function paint() {
mgraphics.save();
style1();
mgraphics.rectangle(0, 0, 100, 100);
mgraphics.fill();
mgraphics.restore();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment