MathGroup Archive 2010

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Graphics3D without perspective

  • To: mathgroup at smc.vnet.net
  • Subject: [mg112709] Re: Graphics3D without perspective
  • From: "M.Roellig" <markus.roellig at googlemail.com>
  • Date: Tue, 28 Sep 2010 06:02:42 -0400 (EDT)
  • References: <i7pp8t$ld4$1@smc.vnet.net>

On 27 Sep., 11:48, ADL <alberto.dilu... at tiscali.it> wrote:
> I would like to obtain a 3D plot, which can be rotated interactively,
> but without any perspective effects (so that the front and back faces
> of the picture generated by Graphics3D[] can superimpose perfectly).
>
> This can be achieved easily in Martin Kraus' Live3D Java applet, and
> even the degree of perspective can be changed interactively, but I
> could not find an option to do this in the Mathematica frontend.
>
> Any Idea?
>
> ADL

Hi,

maybe use orthographic views (Help page of ViewPoint)

Table[Graphics3D[{Sphere[], Cylinder[{{0, 0, 0}, {5, 0, 0}}, .3]},
  ViewPoint ->
   v], {v, {{0, -Infinity, 0}, {Infinity, 0, 0}, {-Infinity, 0, 0}}}]

Markus


  • Prev by Date: calculate vertex of a parabola
  • Next by Date: Re: Row or column?
  • Previous by thread: Re: Graphics3D without perspective
  • Next by thread: Re: Graphics3D without perspective