I have coordinates x and y in a list like this:
((0.0 208.314) (402.16 208.314) (402.16 0.0) (0.0 0.0))
and I want to take the z value out of the object (pline), which I am pulling out of the object and getting a value like so:
(240.0)
Now I want to apply it to the end of each item in the list so that it reads:
((0.0 208.314 240.0) (402.16 208.314 240.0) (402.16 0.0 240.0) (0.0 0.0 240.0))
How do I do that?