使用 tikz 绘制平面和正交系统

使用 tikz 绘制平面和正交系统

我想绘制下面的图像,但我遇到了问题,特别是在左边的平面上:

\documentclass[tikz]{standalone}    
\begin{document} 
\begin{tikzpicture} 
\draw[thick,->] (52,0) -- (60,0) node[anchor=north west] {$x'$}; 
\draw[thick,->] (56,-04) -- (56,04) node[anchor=south east] {$x_N$};
\draw[red,thick,dashed] (56,0) circle (2cm); 
\draw[thick,->] (57.5,1.55) -- (58,2) node[anchor=north west] {$I^{+}(1)$}; 
\draw[thick,->] (57.5,-1.55) -- (58,-2) node[anchor=north west] {$I(1)$}; 
\draw (56,0) node[below right] {$O$} node{$\bullet$}; 
\draw (58,0) node[below right] {$1$} node{}; 
\draw (54,0) node[below left] {$-1$} node{}; 
\end{tikzpicture} 
\end{document} 

在此处输入图片描述

我使用绘制了正交系统tikzpicture,但我不知道如何继续,有什么帮助吗?

答案1

这是使用 的一次尝试hobby

\documentclass[tikz]{standalone}
\usetikzlibrary{hobby,patterns}
\begin{document}
\begin{tikzpicture}
\draw[thick,->] (52,0) -- (60,0) node[anchor=north west] {$x'$};
\draw[thick,->] (56,-04) -- (56,04) node[anchor=south east] {$x_N$};
\node[draw=red,dashed,thick,circle,minimum width=4cm] (n) at (56,0) {};
\fill[pattern=north east lines,opacity=.6] (58,0)arc(0:180:2cm) -- (58,0);
\draw[thick,->] (57.5,1.55) -- (58,2) node[anchor=north west] {$I^{+}(1)$};
\draw[thick,->] (57.5,-1.55) -- (58,-2) node[anchor=north west] {$I(1)$};
\draw (56,0) node[below right] {$O$} node{$\bullet$};
\draw (58,0) node[below right] {$1$} node{};
\draw (54,0) node[below left] {$-1$} node{};

\node[draw,circle,minimum width=2cm] (n1) at (50,3) {};
\begin{scope}
\clip[draw](48,1) to[closed,curve through={(50,3) .. (52,4) .. (51,6) ..(47,6) .. (46.6,5) .. (45,3.8) }] (48,1);
\node[draw,circle,fill=magenta,minimum width=2cm] (n1) at (50,3) {};
\end{scope}
\node[inner sep=1pt,fill,circle,label={below right: $x_0$}] at (50,3){};
\draw[->,shorten <= -4mm] (n1.90) -- +(0.7,0.7) node[pos=1.3]{$\Omega_1 \cap \Omega$};
\draw[->] (51,6) -- +(0.7,0.3) node[pos=1.3]{$\Omega$};
\draw[->] (n1.300) -- +(0.7,-0.3) node[pos=1.3]{$\Omega_1$};
\draw[->] (n1.10) to[bend left] node[midway,below]{8*} (n.120);   %% 8* = ???
\node at (50,-1){ Some text???};
\end{tikzpicture}
\end{document}

在此处输入图片描述

有些文本内容我不太清楚,我???在代码中做了标记。

相关内容