I have feeling that this might be a really easy question for some people, but I couldn't figure out. X(
stream 1
(a1, b1, c1)
(a2, b2, c2)
(a3, b3, c3)
....
stream 2
(d1)
(d2)
(d3)
...
I want to get this target list:
(a1, b1, c1, d1)
(a2, b2, c2, d2)
(a3, b3, c3, d3)
....
What I want to do is injecting one more value (arbitrary angle in my case) to each point before I cull many of them - so that each point brings its angle data along.
Any hep would be greatly appreciated. TIA
Tags: