I would like to rotate objects using grasshopper in serie (or range?). What I would like to do is to set a start value (0 degrees) and an end value of the rotation, and then all objects should rotate until the end value is reached for the last object. I have tried using range but the problem is that all objects rotate multiple times, I only want one rotatation each object. See attached file.
You need to learn how to use lists and data trees so you get the same input in your rotation component. Also, the length of the list of numbers your range component creates doesn’t match the amount of objects you’re trying to rotate. Have a look at this: q_gh_01 2.gh (290.4 KB)
You need to split your list of crvs and breps. q_gh_02 2gh.gh (297.2 KB)
Also, I’m just trying to retain your data structure here. The flattening and grafting again might be unnecessary depending on what you want to achieve in later steps.