从文件中绘制点时在 Tikz/pgfplots 中的透视图

从文件中绘制点时在 Tikz/pgfplots 中的透视图

从文件中绘制 3D 数据点时是否可以应用透视图?我见过将透视变换应用于对象绘制的解决方案(因为您可以更改对象上点的位置以使其具有透视外观),但不确定是否可以在从文件中读取现有点时将其应用于现有点。

我现在的代码是

\documentclass[tikz]{standalone}
\usepackage{pgfplots}

\begin{document}

\begin{tikzpicture}
\begin{axis} [axis equal, view={0}{0}]
\addplot3+ [only marks,mark size=0.05, blue] table[x index=1,y index=0, z 
index=2] {data.txt};
\end{axis}
\end{tikzpicture}

\end{document}

我最多可以改变视角,但点不会汇聚到消失点。我想要一个消失点。

编辑:我添加了 MWE。数据文件是这里。它代表一个圆柱体。当应用适当的透视时,这些点应该会聚到一个消失点

相关内容