Hi! New to processing and trying to find a suitable way of fixing an array of images around a radius. I know the basic highschool math to achieve a set of values / points around a radius is this x(t) = r cos (t) + j, y(t) = r sin(t) + k
And written more generically -
x = centerX + Math.cos(radians) * radius;
y = centerY + Math.sin(radians) * radius;
But I dont know how to implement this with an array of images in processing, can anyone direct me to any examples or lessons that could help me with shape based positioning ?