Skip to content

Instantly share code, notes, and snippets.

@starakaj
Created July 8, 2021 20:57
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/a84cb525fcc4bb7c1a3fc49a988c8555 to your computer and use it in GitHub Desktop.
Save starakaj/a84cb525fcc4bb7c1a3fc49a988c8555 to your computer and use it in GitHub Desktop.
const makeRectDrawStatements = template(`
mgraphics.rectangle(%%x%% * aspect, %%y%%, %%w%% * aspect, %%h%%);
mgraphics.fill();
`);
const makeStyledRectDrawStatements = template(`
mgraphics.save();
%%styleFunctionName%%();
mgraphics.rectangle(%%x%% * aspect, %%y%%, %%w%% * aspect, %%h%%);
mgraphics.fill();
mgraphics.restore();
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment