I would like to plot points in 3D Space and show a number next to them.
How can I achieve this ?
Here is the list of coordinates / number :
(0 0 0) //0
(35 0 0) //1
(35 10 0) //2
(0 10 0) //3
(0 0 1) //4
(35 0 1) //5
(35 10 1) //6
(0 10 1) //7
(0 100 0) //8
(35 100 0) //9
(0 100 1) //10
(35 100 1) //11
(-20 0 0) //12
(-20 0 1) //13
(-20 10 0) //14
(-20 10 1) //15
(-20 100 0) //16
(-20 100 1) //17
In Mathematica Format:
corrd = {{0,0,0},{35,0,0},{35,10,0},{0,10,0},{0,0,1},{35,0,1},{35,10,1},{0,10,1},{0,100,0},{35,100,0},{0,100,1},{35,100,1},{-20,0,0},{-20,0,0},{-20,0,1},{-20,10,0},{-20,10,1},{-20,100,0},{-20,100,1}};
numb= Table[i,{i,0,17}];
I tryed ListPointPlot3D[corrd], but then I don't know how to show the number next to them ?


numb = Table[i,{0,17}]cannot work. Try:numb = Range[{0,17}]$\endgroup$