Hi guys I'm trying to draw a really simple cube in different ways but there is something that is bugging me, why the vertices are so imperfect?
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (0,0,0) -- (0,1,0) -- (0,1,1) -- (1,1,1) -- (1,1,0) -- (1,0,0) -- (0,0,0) -- (0,0,1) -- (1,0,1) -- (1,0,0);
\draw (0,1,0) -- (1,1,0);
\draw (1,0,1) -- (1,1,1);
\draw (0,0,1) -- (0,1,1);
\end{tikzpicture}
\end{document}



miter limitto avoid thos peaky vertices that drop over other edges. But it's not always enough. – SebGlav Mar 27 '22 at 21:33