如何在 tikz 中绘制扭转棱柱梁?

如何在 tikz 中绘制扭转棱柱梁?

我是 Tikz 新手,但我想绘制以下对象: 在此处输入图片描述

有人能提供一些好的建议或帮助吗?

答案1

假设横截面表现为刚体:

\documentclass{article}
\usepackage{pgfplots}

\pgfplotsset{compat=1.12}
\begin{document}
\begin{tikzpicture}[
    declare function={squarex(\t) =
        (\t < 0.25) ? 1 : (
            (\t < 0.5) ? (1 - (\t-0.25) * 8) : (
                (\t < 0.75) ? -1 : (-1 + (\t - 0.75) * 8)
        )
    ;},
    declare function={squarey(\t) =
        (\t < 0.25) ? (-1 + \t*8) : (
            (\t < 0.5) ? 1 : (
                (\t < 0.75) ? (1 - (\t - 0.5) * 8) : -1
        )
    ;}
]
\begin{axis}[
    axis equal image, 
    z buffer=sort,
    hide axis, 
    domain=0:1, y domain = 0:10, samples y = 25,
    ylabel =y, xlabel=x,
    clip=false
]

\addplot3 [
    z buffer=none, domain=0:330, samples y=1,
    ultra thick, black, -latex] (
    -0.5,
    {sin(x)*1.5},
    {cos(x)*1.5}
);

\addplot3 [surf, shader=flat, fill=yellow!50, draw=black] (
    y,
    {squarex(x) * cos(y*9) - squarey(x) * sin(y*9)},
    {squarex(x) * sin(y*9) + squarey(x) * cos(y*9)}
);

\addplot3 [z buffer=auto, fill=yellow!50, draw=black] table {
x y z
10 -1 -1
10 1 -1
10 1 1
10 -1 1
10 -1 -1
};

\addplot3 [
    z buffer=auto, domain=-60:270, samples y=1,
    ultra thick, black, latex-] (
    10.5,
    {sin(x)*1.5},
    {cos(x)*1.5}
);
\end{axis}
\end{tikzpicture}
\end{document}

相关内容