I have these two lists
xyz={{1, 1, 1}, {1, 1, -1}, {1, -1, 1}, {1, -1, -1}, {-1, 1, 1}, {-1,
1, -1}, {-1, -1, 1}, {-1, -1, -1}}
color={GrayLevel[0.5], GrayLevel[0.5], RGBColor[0, 1, 0], GrayLevel[0.5],
GrayLevel[0.5], GrayLevel[0.5], GrayLevel[0.5], RGBColor[0, 1, 0]}
I need to use this function Graphics3D[{*Green*, Sphere[]}] to plot each sphere with coordinates from xyz list and colour from col list.
by applying MapThread[].




Graphics3D[{dfhgkjdfhg, MapThread[{#1, Sphere[#2]} &, {col, xyz}]}]– Emamof Jun 28 '12 at 21:59Lighting -> "Neutral"at the end ofGraphics(since I assume the true colors are important to you). – Jens Jun 29 '12 at 16:07