[Tex/LaTex] draw a dot / small sphere in a TikZ 3D Plot

3dtikz-pgf

I got a 3d coordinate system and I want to mark a point with a dot.

\begin{tikzpicture}[x = {(0.866cm,0.5cm)}, y={(0cm,1cm)}, z={(0.866cm,-0.5cm)},]
\draw[thick,->] (-15,0,0) -- (15,0,0) node[right] {x};
\draw[thick,->] (0,-12,0) -- (0,12,0) node[above] {y};
\draw[thick,->] (0,0,-15) -- (0,0,50) node[right] {z};
\fill (0,0,5) circle (1);
\end{tikzpicture}

This is the result:

bad dot

but what i want is a sphere or a circle from the point of view:

good dot

How can I achieve this?

Best Answer

typical, 2 hours searching the internet. then after finally posting, 2 mins later i find the answer myself. but since it was so hard to find maybe it will be helpful to somebody else:

\begin{tikzpicture}[x = {(0.866cm,0.5cm)}, y={(0cm,1cm)}, z={(0.866cm,-0.5cm)},]
\draw[thick,->] (-15,0,0) -- (15,0,0) node[right] {x};
\draw[thick,->] (0,-12,0) -- (0,12,0) node[above] {y};
\draw[thick,->] (0,0,-15) -- (0,0,50) node[right] {z};
\draw plot [mark=*, mark size=10] coordinates{(0,0,5)}; 
\end{tikzpicture}

i dont know how it works, but it does perfectly what i wanted: enter image description here