summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_7.tex
blob: 1567c1d6eab2722765cd9a3456cfe889c11a2960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

\documentclass{article}

\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis equal]
% FokkerDrI_layer_0.patches.dat contains:
% # each row is one vertex; three consecutive
% # vertices make one triangle (patch)
% 105.577	-19.7332	2.85249
% 88.9233	-21.1254	13.0359
% 89.2104	-22.1547	1.46467
% # end of facet 0
% 105.577	-19.7332	2.85249
% 105.577	-17.2161	12.146
% 88.9233	-21.1254	13.0359
% # end of facet 1
\addplot3[patch]
	file
	{plotdata/FokkerDrI_layer_0.patches.dat};
\end{axis}
\end{tikzpicture}
\end{document}