3D 弯曲线

3D 弯曲线

我想在三维空间中弯曲两点之间的一条线。但是,该参数bend left似乎不允许我选择弯曲的方向。在下面的 MWE 中,我希望弯曲发生在 z 维度,而不是 y 维度,因为它目前似乎默认这样做。我该怎么做?

\begin{tikzpicture}
\begin{axis}[view={0}{130},  % 120
xmin=0, xmax=1.1,
zmin=0, zmax=1.,
ymin=0, ymax=1.15,
clip=false,
rotate around z=0,
rotate around y=0,
rotate around x=0,
xlabel={$x$},
ylabel={$y$},
zlabel={$z$}]
\node[draw] at (0.8, 0, 0.0) {Point 1};
\node[draw] at (0.5, 0, 0.) {Point 2};
\draw [-{Cone[width'=+0pt +1.0]}] (0.8, 0, 0.0) to[bend left=45] (0.5, 0, 0.);
\end{axis}
\end{tikzpicture}

在此处输入图片描述

相关内容