Created
April 22, 2017 15:47
-
-
Save nngogol/7f6de09e6d4b4e4bea8dcc039e3bd98b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function windowResized() { | |
// Triggered, when window Resized | |
let Xx = windowWidth - 280; | |
let Yy = windowHeight / 1.4; | |
MyShape.resizeMySelf(canvass.width, canvass.height, Xx, Yy); | |
resizeCanvas(Xx, Yy); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment