 
 
 
 
 
 
Re: Unwanted lined in PDF-exported Graphics3D
- To: mathgroup at smc.vnet.net
- Subject: [mg86714] Re: Unwanted lined in PDF-exported Graphics3D
- From: mark <markmgg at googlemail.com>
- Date: Wed, 19 Mar 2008 05:24:52 -0500 (EST)
- References: <fro362$i47$1@smc.vnet.net>
On Mar 18, 9:48 am, Mariano Su=E1rez-Alvarez
<mariano.suarezalva... at gmail.com> wrote:
> Simple code as
>
> Export["test.pdf",
>  Graphics3D[{
>     Polygon[Table[Chop[{Cos[t], Sin[t], 0}], {t, 0, 2 Pi, 0.1}]]
>    }]
>  ]
>
> results in a PDF file which has lots of extra lines on the surface.
>
> Is there a way to get rid of them?
>
> -- m
there is no any extra lines on the surface. are you trying to get rid
of the box? if that what you are looking for then
use:
Export["test.pdf",
 Graphics3D[{Polygon[
    Table[Chop[{Cos[t], Sin[t], 0}], {t, 0, 2 Pi, 0.1}]]},
  Boxed -> False]]

