绘制带有 3 个质量的弹簧环

绘制带有 3 个质量的弹簧环

我正在尝试弄清楚如何使用 LaTeX 绘制以下内容:

screenshot from given example 我怎样才能绘制带有圆形弹簧的系统?

答案1

欢迎来到 TeX.SE。关于“帮我做”问题的持续讨论,您可能想阅读。对于新手,有时会有例外,但如果您可以考虑尝试提出更有意义的问题,那就太好了。正如 nidhin 指出的那样,很难说出您想画什么,这是一个猜测。

\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}
\draw[thick,decoration={coil,segment
length=pi*8cm/72,amplitude=5pt},decorate,xscale=-1] (0,0) circle (4cm);
\node[fill,minimum size=12mm,label=above right:$M$] (M) at (180:4){};
\node[fill,minimum size=6mm,label=right:$m$,rotate=45] (m1) at (45:4){};
\node[fill,minimum size=6mm,label=right:$m$,rotate=-45] (m2) at (-45:4){};
\draw[thick] (90:3) -- ++ (0,3);
\draw[-latex] (-0.5,5) arc(180:405:0.5 and 0.25) node[above right]{$\omega$}; 
\end{tikzpicture}
\end{document}

enter image description here

相关内容