In order to understand the full extent of the coded pattern, the canvas was re-sized, along with the code defining where the center of the canvas is / where the origin point should be moved to. This was mainly done through substituting in some variables into the size() code rather than initial numbers, then using those same variables in the translate() code:
int s = 800;
size(s,s);
translate(s/2,s/2);
No comments:
Post a Comment