Beginner: Repeated Rotation of Geometry

I am trying to learn this software with minimal background during my down time at work. Thank you to all who have helped me in the past.
I am trying to repeat a rotation of a solid around an axis for a full 360 degrees at equal angles given an amount of times it is to be subdivided. I have little knowledge but I think this will require some loop, but there are no nodes for it and I don’t know how to do it in code block. Any help is appreciated. Thanks

Try creating a range using your 360/x as the step:

I am also subtracting the step size from 360 so that it will not be rotated 360 degrees, which is effectively the same as rotating by 0 degrees.

2 Likes

Thanks, that was exactly what I needed. I guess I was just over complicating it.