Notifications
Clear all
[Closed] List a portion of an array
Aug 09, 2011 6:52 pm
How would i affect just a portion of an array by skipping the first one.
testObjs = #()
for obj in selection do
(
appendIfUnique testObjs obj
)
newList = testObjs[3..(testObjs.count)]
5 Replies
Aug 09, 2011 6:52 pm
nList = #()
for i = 2 to selection.count do
(
appendIfUnique nList selection[i]
)
Hope this is it.
Aug 09, 2011 6:52 pm
what does your “appendIfUnique” function look like if you don’t mind my asking?
Aug 09, 2011 6:52 pm
what is the logic of using appendIfUnique while collecting nodes from the selection set to an empty array?
It’s not like the selection set can contain the same node twice…
Aug 09, 2011 6:52 pm
I do it as a precautionary and on top of that I plan to expand on it making it more useful then.