Search found 9 matches

by tomtom
Tue Jul 10, 2012 8:45 am
Forum: Graphics, Figures & Tables
Topic: Rendering a 3D Triangulation
Replies: 8
Views: 5360

Re: Rendering a 3D Triangulation

Ok. Managed to do it.
Used about 1000 vertices and 3000 faces.
by tomtom
Mon Jul 09, 2012 12:13 pm
Forum: Graphics, Figures & Tables
Topic: tikz-3dplot | Spherical Plot without visible Lines
Replies: 10
Views: 11199

Re: tikz-3dplot | Spherical Plot without visible Lines

Is there at least a way to reduce the line width?
by tomtom
Sun Jul 08, 2012 9:15 pm
Forum: Graphics, Figures & Tables
Topic: tikz-3dplot | Margin around 3D Plot
Replies: 1
Views: 1823

tikz-3dplot | Margin around 3D Plot

Ok. I found a first hack:

Code: Select all

\usetikzlibrary{external}
\tikzexternalize
\tikzset{external/force remake}
and as option for the tikzpicture enviroment:

Code: Select all

trimm left, trimm right=0
Unfortunatly the result has some problem with determining its size.
by tomtom
Sun Jul 08, 2012 4:22 pm
Forum: Graphics, Figures & Tables
Topic: tikz-3dplot | Margin around 3D Plot
Replies: 1
Views: 1823

tikz-3dplot | Margin around 3D Plot

Hello.

I am using the tikz-3dplot package in order to plot some spherical harmonics.

The resulting tikzpicture contains an unsymmetric margin around the spherical harmonic. How can I get rid of this?


\documentclass{article}

\pagestyle{empty}

\usepackage{tikz}
\usepackage{tikz-3dplot ...
by tomtom
Thu Jul 05, 2012 5:13 pm
Forum: Graphics, Figures & Tables
Topic: Rendering a 3D Triangulation
Replies: 8
Views: 5360

Rendering a 3D Triangulation

I want to render a 3d shape by triangles.

I have got two things:

1) a list of vertices
2) a list of triangles, defined by 3 numbers, which represent the linenumber in the vertices list

On http://tex.stackexchange.com/questions/45263/plot-tikz-items-with-respect-to-3d-position-not-the-order-of ...
by tomtom
Thu Jul 05, 2012 4:56 pm
Forum: Graphics, Figures & Tables
Topic: Rendering a 3D Triangulation
Replies: 8
Views: 5360

Rendering a 3D Triangulation

Someting like this:


\begin{minipage}{\textwidth}
\begin{tikzpicture}
\begin{axis}[view/h=120, width=\linewidth]
\addplot3[
opacity=0.5,
patch,
patch type=triangle,%polygon,
patch table ={faces.data}
]
table[header=false, x index=0, y index=1, z index=2] {vert.data};
\end{tikzpicture}
\end ...
by tomtom
Thu Jul 05, 2012 4:01 pm
Forum: Graphics, Figures & Tables
Topic: Rendering a 3D Triangulation
Replies: 8
Views: 5360

Rendering a 3D Triangulation

I have got two files one containing vertices (one per line) and another containing the three coordinates of the triangle in form of indexes, as they appear in the first file (one triangle per line).

Is there a way to render a three dimensional surface from that?
How can I access coordinates from ...
by tomtom
Sun Jul 01, 2012 10:25 pm
Forum: Graphics, Figures & Tables
Topic: tikz-3dplot | Spherical Plot without visible Lines
Replies: 10
Views: 11199

Re: tikz-3dplot | Spherical Plot without visible Lines

Yes looked at the manual. Couldn't find any answer there.
I mean the black lines (example) other than the axis (surface lines on sphere).
Changing the color makes no sense, passing no line color argument, doesn't work and setting the linewidth to zero by: \pgfsetlinewidth{.0pt} compiles, without ...
by tomtom
Sun Jul 01, 2012 9:58 pm
Forum: Graphics, Figures & Tables
Topic: tikz-3dplot | Spherical Plot without visible Lines
Replies: 10
Views: 11199

tikz-3dplot | Spherical Plot without visible Lines

Hello everybody,

just took notice of the tikz-3dplot package and especially the \tdplotsphericalsurfaceplot macro.

Is there any way to omit drawing the lines, e.g. in http://www.texample.net/tikz/examples/s ... th-3dplot/?