使用 tizk 在框架上绘制类似尾流的形状

使用 tizk 在框架上绘制类似尾流的形状

我在这里要问的是,如何使用 tizk 在投影仪框架上制作出如下图所示的波浪形状: 我想做的框架示例

我只能把它画成直线。谢谢

答案1

欢迎使用 TeX-SE。
使用贝塞尔曲线来制作这样的形状。

\documentclass[border=5pt]{standalone}
\usepackage{tikz}

\begin{document}
    \begin{tikzpicture}
        \draw[fill=cyan] (0,0) --++ (0,1) .. controls ++(7,1) and ++(-2,1) .. ++(10,0) --++ (0,-1) --cycle;
    \end{tikzpicture}
\end{document}

贝塞尔波

答案2

例如,您可以使用 绘制弧线to (需要两次编译)。贝塞尔曲线也是可行的,请查看文档。

\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{tikzpicture}[overlay,remember picture]

\fill[draw=black,thick,fill=blue] ([yshift=1.5cm]current page.south west) to[in=30,out=50] ([yshift=1.5cm]current page.south east)--
 (current page.south east)--(current page.south west)--cycle;

\end{tikzpicture}
\end{frame}
\end{document}

在此处输入图片描述

相关内容