First I’d like to appreciate for your help,
and apologise if my code is not as clean as possible, as I’m a noob to C#.
I literally read as much related topic as i could find and attempt but with no ends, so I’m coming to you for help,
I’m trying to create a for loop so a brep can be repeated in z-axis in a set distance for a few times.
However I end up getting all copies of the brep at the same last distance result and the result is not even as specified in the condition. ( as shown in the image).
basically from what i read, i might be translating the original along with the copies,
but i can’t get my head around it to solve the problem.
Once again thank you for your help, and if anything is unclear please let me know,
i’ll try to explain more specific.
Thank you for your help Petras!
I’ve taken your advice and create copy inside for loop.
now it’s all stacking on the original’s position,
I guess I’m still not doing it right…
Sorry I’m being an idiot…
Thanks alot once again!
So I guess my mistake was that i put the original in the for loop,
hence everytime it transform, the next step transform the original again since it’s ref,
and by adding the original to List,
it all stacked up at the end.
with a copy of the original, it created an isolated memory to the previous one in each step.
Lesson learned.
Once again, thank you for helping me to solve and learn!