 
 
 
 
 
 
Re: Surface Plots in Mathematica
- To: mathgroup at smc.vnet.net
- Subject: [mg29673] Re: Surface Plots in Mathematica
- From: "Allan Hayes" <hay at haystack.demon.co.uk>
- Date: Tue, 3 Jul 2001 04:40:26 -0400 (EDT)
- References: <9hp44b$2dc$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Boris
lst= {{1,2,3},{2,3,4},{3,4,5}}
{{1,2,3},{2,3,4},{3,4,5}}
pts= Point/@lst (*short for Map[Point,lst*)
{Point[{1,2,3}],Point[{2,3,4}],Point[{3,4,5}]}
Show[Graphics3D[{Hue[0],PointSize[.1], pts}]]
[graphics deleted]
More is available by looking up Point, Map,  PointSize, Graphics3D, Hue
...in the Help Bowser and following up the references given.
--
Allan
---------------------
Allan Hayes
Mathematica Training and Consulting
Leicester UK
www.haystack.demon.co.uk
hay at haystack.demon.co.uk
Voice: +44 (0)116 271 4198
Fax: +44 (0)870 164 0565
"Boris Breidenbach" <Boris.Breidenbach at mf.mpi.de> wrote in message
news:9hp44b$2dc$1 at smc.vnet.net...
> Hi!
>
> How can I display 3d points given as a list {{x,y,z},....}?
>
> Boris
>

