I would like to be easily draw 3-D shapes. I'm finding it difficult. I've got isometric paper, but it's difficult to see where to put the lines.
here's my MWE. But is the an easier way to draw shapes like the I've attached. All the measurements need to be on the shapes
% !TeX program = xelatex
% !TeX spellcheck = en_GB
\documentclass[12pt,addpoints]{exam}
\usepackage{tikz}
\usetikzlibrary{plotmarks}
\usetikzlibrary{quotes,angles}
\usetikzlibrary{quotes,arrows.meta} % needed for tikz pictures
\begin{document}
\begin{tikzpicture}[x={(0.86cm,0.5cm)},y={(-0.86cm,0.5cm)}, color=black]
\clip (0,12.5) rectangle (18,12.5);
\foreach \x in {0,...,25}
\foreach \y in {0,...,25}
{
\fill (\x,\y) circle (2pt);
\draw [red ] (4,11) -- (6,13);
\draw [red ] (4,11) -- (4,15);
\draw [red ] (4,15) -- (6,17);
\draw [red] (6,13) -- (6,17);
\draw [red ] (4,11) -- (10,11);
\draw [red ] (6,13) -- (12,13);
\draw [red ] (10,11) -- (12,13);
\draw [red ] (12,13) -- (12,17);
\draw [red ] (6,17) -- (12,17);
%\draw [red, very thick] (12,17) -- (10,15);
\draw (4,15)-- (10,15);
\draw (10,15)-- (12,17);
\draw (10,15)-- (10,11);
}
\end{tikzpicture}
\end{document}
