Tikzpicture - 完成绘制蛋糕片的曲线

Tikzpicture - 完成绘制蛋糕片的曲线

如上所述,我想通过绘制蓝色曲线来画龙点睛,以便完成的图像看起来就像一块蛋糕。

谢谢。

我目前拥有的:

\documentclass[]{article}
\usepackage[margin=0.5in]{geometry}
\usepackage{pgfplots}
\renewcommand{\thesection}{\arabic{section}}
\usepackage{mathtools}
\usepackage{cancel}
\usepackage{pgfplots}
\usepackage{amsmath}
\newtheorem{theorem}{THEOREM}
\newtheorem{proof}{PROOF}
\usepackage{tikz}
\usepackage{amssymb}
\usetikzlibrary{patterns}
\usepackage{fancyhdr}
\usepackage{bigints}
\usepackage{color}
\usepackage{tcolorbox}
\usepackage{color,xcolor}
\usepackage{booktabs,array}
\usepackage{hyperref}
\usepackage{graphicx}
\usetikzlibrary{arrows}
\usepackage{polynom}
\usepackage{flexisym}
\usepackage{wallpaper}
\usepackage{blkarray}
\usepackage{caption}
\usepackage{lscape}
\usepgfplotslibrary{fillbetween}
\usepgfplotslibrary{statistics}
\usetikzlibrary{shapes.misc}
\usetikzlibrary{arrows.meta}
\newenvironment{tightcenter}{
\setlength\topsep{0pt}
\setlength\parskip{0pt}
\begin{center}}{\end{center}}
\begin{document}
\begin{tikzpicture}
%\draw[thick] (0,0) circle (4.5cm);
%\draw[fill=black] (0,0) circle (0.3mm);
%\node[below] at (0,0){$O$};
%\node[below] at (1.25,0.9){$2$ cm};
%\node[below] at (-0.9,0.9){$2$ cm};
%
%\draw[thick,color=black,fill=gray!30] (0,0) --  (120:4.5) arc(120:45:4.5) -- cycle;
\draw[thick,color=black,fill=gray!30] (0,0) --  (-20:4.5) arc(-20:-50:4.5) -- cycle;
\draw[thick,color=blue!30] (-35.5:5.2) arc(-35.5:-60:5.2);
\draw[thick,color=black] (4.23,-1.55) -- (4.23,-3.52);
\draw[thick,color=black] (2.9,-3.43) -- (2.9,-4.67);
\draw[thick,color=black] (0,0) -- (0,-1.04)-- (2.9,-4.67);
%
%\draw [thick,<->] (0.28,-0.4) -- node[fill=white] {\small $2$ \text{cm}} (2.12,1.33);
%\draw [thick,<->] (-0.5,-0.3) -- node[fill=white] {\small $2$ \text{cm}} (-1.73,1.83);
%
\end{tikzpicture}
\end{document}

电流输出

答案1

像这样 ?

为了避免手动计算点的坐标,我使用语法来对点进行相对定位--++。此语法表示,要获得下一个点的坐标,我们将前一个点添加到(0,-1.24)

(4.23,-1.55) --++ (0,-1.24)

相当于

(4.23,-1.55) -- (4.23,-2.79)

确实4.23 + 0 = 4.23-1.55 + (-1.24) = -2.79

截屏

\documentclass[tikz,border=5mm]{standalone}

\begin{document}
\begin{tikzpicture}
\draw[thick,color=black,fill=gray!30] (0,0) --  (-20:4.5) arc(-20:-50:4.5) -- cycle;
\draw[thick,color=black,yshift=-1.24cm] (-20:4.5) arc(-20:-50:4.5) -- (0,0);
\draw[thick,color=black] (4.23,-1.55) --++ (0,-1.24);
\draw[thick,color=black] (2.9,-3.43) --++ (0,-1.24);
\draw[thick,color=black] (0,0) --++ (0,-1.24);

\end{tikzpicture}
\end{document}

答案2

如果使用tikz-3dplot,您不必猜测曲线,并且可以随意调整视角。

\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{tikz-3dplot}
\begin{document}
\tdplotsetmaincoords{75}{60}
\begin{tikzpicture}[tdplot_main_coords]
\begin{scope}[canvas is xy plane at z=0,name prefix=bot-]
 \draw (0,0) coordinate (O) -- (4,0) coordinate (A) arc (0:60:4) coordinate
 (B);
\end{scope} 
\begin{scope}[canvas is xy plane at z=2,name prefix=top-]
 \draw[fill=blue!20] (0,0) coordinate (O) -- (4,0) coordinate (A) arc (0:60:4) coordinate
 (B) -- cycle;
\end{scope} 
 \draw foreach \X in {O,A,B}
 {(bot-\X) -- (top-\X)};
\end{tikzpicture}
\end{document}

在此处输入图片描述

\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{tikz-3dplot}
\begin{document}
\foreach \X in {89,88,...,60,61,62,...,88}
{\tdplotsetmaincoords{70+10*sin(6*\X)}{\X}
\pgfmathsetmacro{\xmin}{0}
\pgfmathsetmacro{\xmax}{0}
\pgfmathsetmacro{\ymin}{0}
\pgfmathsetmacro{\ymax}{0}
\begin{tikzpicture}[tdplot_main_coords]
    \ifdefined\figbb\relax
    \path \figbb;
    \fi
    \begin{scope}[canvas is xy plane at z=0,name prefix=bot-]
     \draw (0,0) coordinate (O) -- (4,0) coordinate (A) arc (0:60:4) coordinate
     (B);
    \end{scope} 
    \begin{scope}[canvas is xy plane at z=2,name prefix=top-]
     \draw[fill=blue!20] (0,0) coordinate (O) -- (4,0) coordinate (A) arc (0:60:4) coordinate
     (B) -- cycle;
    \end{scope} 
    \draw foreach \X in {O,A,B} {(bot-\X) -- (top-\X)};
    \path let \p1=(current bounding box.south west),
    \p2=(current bounding box.north east)
    in \pgfextra{%
    \pgfmathsetmacro{\xmin}{min(\x1,\xmin)}
    \pgfmathsetmacro{\xmax}{max(\x2,\xmax)}
    \pgfmathsetmacro{\ymin}{min(\y1,\ymin)}
    \pgfmathsetmacro{\ymax}{max(\y2,\ymax)}
    \xdef\xmin{\xmin pt}
    \xdef\xmax{\xmax pt}    
    \xdef\ymin{\ymin pt}
    \xdef\ymax{\ymax pt}    
    }; 
\end{tikzpicture}}
\makeatletter               
\edef\figbb{(\xmin,\ymin) rectangle (\xmax,\ymax)}
\immediate\write\@mainaux{\xdef\string\figbb{\figbb}\relax}
\makeatother
\end{document}

在此处输入图片描述

如果你想允许任意视角,你需要区分一些情况,例如这个答案它会为您提供剩余的(奶酪)蛋糕(除了被老鼠偷走的那块;-))。

答案3

再举一个例子:在绘图中,角度是按相反顺序考虑的。对于垂直线,坐标是定义的,因此现在只需要一个坐标就可以确定切片的高度:

\documentclass[tikz, margin=3mm]{standalone}

\begin{document}
    \begin{tikzpicture}[
every path/.style = {thick, line join=round} % style of lines
                        ]
\draw[fill=gray!30] (0, 0) --   (-50:4.5) coordinate (a1) arc(-50:-20:4.5) coordinate (a2) -- cycle;
\draw      (0,0) -- (0,-2) % determine height of slice
                           -- ++(-50:4.5) coordinate (b1) arc(-50:-20:4.5) coordinate (b2);
\draw      (a1) -- (b1)    (a2) -- (b2);
    \end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容