I want my patches to be have different attributes , and color, based on their coordinates. My end goal is to represent the gutwall with grey and the lumus with pink so i have used for loop to implement it in The userPatch
def i=0
for(i;i<=32;i++) {
i++
if(distance(patch(i,32))==0) {
Gutwall()}
else {
Gutlummus() }
if(i<=32) {
continue
}
}}
But it only appears to do the if statement for i=0