绘制神经细胞

绘制神经细胞

下一个绘图可以完成吗?如果可能的话,作为一个漂亮的 3-d 可编辑对象,可以逐部分显示(如使用 visible<1> visible<2>)。 enter image description here

这是我能做的最好的事情,但我并不满意。

\documentclass{article}
\usepackage{tikz}

\begin{document}

% begin Nerve Cell2
\begin{minipage}[c]{1\textwidth}
\hskip 4cm
{
\tikz \shade[inner color=yellow, outer color=red] (0,0)circle(.5cm);
\vskip -.18cm
\hskip .86cm
\tikz % multiple lines, with rounded corners
\draw[thick,rounded corners=10pt, red, top color=red, bottom color=red, middle color=red!25]
(0,0)--(0,-1)--(3.5,-1)--(4.2,-.8)--(3.4,-1.12)--(4.2,-1.1)--(3.4,-1.22)--(4.2,-1.4)--(3.4,-1.34)--(4.2,-1.65)--(3.4,-1.45)--(-3.5,-1.45)--(-4.,-2)--(-3.54,-1.25)--(-4.,-.5)--(-3.5,-1)--(-.5,-1)--(-.5,0)--cycle;
\vskip -1.32cm
\hskip .1cm
\begin{tikzpicture}[rounded corners=10pt,ultra thick]
\shade[inner color=yellow, outer color=green] (.25,1.4)circle(.5cm);
\end{tikzpicture}
\vskip -.86cm
\hskip -1.78cm
\begin{tikzpicture}[rounded corners=10pt,ultra thick]
\shade[outer color=green, ,inner color=green!35] (-1.6,-.42)rectangle+(2,.7);
\end{tikzpicture}
}
\end{minipage}
% end Nerve Cell2

\end{document}

mytest

相关内容