Hallo liebe LaTeX-Freunde, ich hab da mal ein Problem:
Ich versuche gerade diverse 3-dim. Mannigfaltigkeiten per Hier ein Beispiel anhand eines Torus: Open in writeLaTeX
\documentclass[margin=2mm,tikz]{standalone} \usepackage{pgfplots} \begin{document} %Oberflächenproblem \begin{tikzpicture}[line width=.7pt] \begin{axis}[axis equal image, clip=false, xlabel=\empty, ylabel=\empty, zlabel=\empty, axis lines=middle, colormap/blackwhite, y dir=reverse, % axis on top ] % sym. Torus: \addplot3[domain=0:360,y domain=0:360, samples=50, surf ] ({15+(10+4*cos(x))*cos(y)} , {15+(10+4*cos(x))*sin(y)}, {4+4*sin(x)}); \end{axis} \end{tikzpicture} \end{document} Die dazu gehörige Grafik: Was mache ich falsch? gefragt 03 Jun '14, 18:04 Ross |
Mit Open in writeLaTeX
\documentclass[margin=2mm,tikz]{standalone} \usepackage{pgfplots} \begin{document} %Oberflächenproblem \begin{tikzpicture}[line width=.7pt] \begin{axis}[axis equal image, clip=false, xlabel=\empty, ylabel=\empty, zlabel=\empty, axis lines=middle, colormap/blackwhite, %y dir=reverse, %axis on top ] % sym. Torus: \addplot3[domain=0:360,y domain=0:360, samples=50, surf,z buffer=sort ] ({15+(10+4*cos(x))*cos(y)} , {15+(10+4*cos(x))*sin(y)}, {4+4*sin(x)}); \end{axis} \end{tikzpicture} \end{document} beantwortet 04 Jun '14, 10:21 Henri Mir scheint, dass der einzige Grund fuer
(08 Jun '14, 23:25)
cfeuersaenger
|
z buffer=sort
. Dafür muss leidery dir=reverse
entfernt werden.@Henri das hoert sich stark nach einer Antwort an. Die Einschraenkung, dass es probleme mit
y dir=reverse
gibt, ist mir neu - ich werde mal sehen, ob/wo da ein bug ist.Jap, würde ich auch als eine solche akzeptieren. Danke!
@cfeuersaenger schon einen Bug entdeckt?