Asked
Active
Viewed 868 times
-4
Yim Phearun
- 169
1 Answers
0
In a comment above, I suggested that it could be done constructed with a 2D vector diagram.
Here's a sample in Tikz (I'll leave you to fill in the finer details yourself):
\documentclass{article}
\usepackage{tikz}
\usepackage{xcolor}
\usepackage{amsmath}
\begin{document}
\begin{tikzpicture}
\draw [<->,gray!50!black] (0,5) node[above]{$z$} -- (0,0) --(-3,-4) node[left]{$x$};
\draw [->,gray!50!black] (0,0)--(5,0) node[right]{$y$};
\draw[thick] (0,0)--(4,0)--(2.25,-3)--(-2.25,-3)--(0,0);
\draw[thick] (2.25,-3)--(2.25,1.5)--(0,0);
\draw[dashed] (-2.25,-3)--(2.25,1.5)--(4,0);
\end{tikzpicture}
\end{document}
Output:
Thev
- 1,568


tikz. – Thev Oct 05 '18 at 09:47