Alternatively, if a PApplet member happens to be static
, variable this can be replaced w/ PApplet:
-
rnd = round(random(width))
-> Python’s builtin version. -
rnd = this.round(random(width))
-> PApplet version. -
rnd = PApplet.round(random(width))
-> PApplet version too.