MathGroup Archive 2003

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

Search the Archive

Re: For[] command in Show[] function

  • To: mathgroup at smc.vnet.net
  • Subject: [mg41810] Re: For[] command in Show[] function
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Fri, 6 Jun 2003 09:50:40 -0400 (EDT)
  • Organization: Universitaet Leipzig
  • References: <bbna7h$2aq$1@smc.vnet.net>
  • Reply-to: kuska at informatik.uni-leipzig.de
  • Sender: owner-wri-mathgroup at wolfram.com

Hi,

and if you don't use a For[] loop the code become
even simpler with

position =
    {
      {-10, -13, 0}, {-12, -13, 0}, {-14, -13, 0}, {-16, -13, 0},
      {-10, -13, -2}, {-12, -13, -2}, {-14, -13, -2}, {-16, -13, -2},
      {-10, -13, -4}, {-12, -13, -4}, {-14, -13, -4}, {-16, -13, -4},
      {-10, -13, -6}, {-12, -13, -6}, {-14, -13, -6}, {-16, -13, -6},
      {-10, -13, -8}, {-12, -13, -8}};
Show[Graphics3D[
    {RGBColor[1, 0, 0], PointSize[0.04], Point /@ position
      }]]

Regards
  Jens

Jong Choi wrote:
> 
> Dear All,
> I want to show the 18 points in the 3D space.
> So I used the Show[ ] function.
> But in every points, I should type the Point[position[i]] repeatly.
> If I can use the For[ ] routine, the code will be simple.
> Please let me know how to use For routine in the Show[ ] function or how to
> show a lot of points in 3D space with simple codes.
> Thanks,
> Jong
> 
> Code :
> position =
>     {
>       {-10, -13, 0}, {-12, -13, 0}, {-14, -13, 0}, {-16, -13, 0},
>       {-10, -13, -2}, {-12, -13, -2}, {-14, -13, -2}, {-16, -13, -2},
>       {-10, -13, -4}, {-12, -13, -4}, {-14, -13, -4}, {-16, -13, -4},
>       {-10, -13, -6}, {-12, -13, -6}, {-14, -13, -6}, {-16, -13, -6},
>       {-10, -13, -8}, {-12, -13, -8}};
> Show[Graphics3D[
>      {RGBColor[1, 0, 0], PointSize[0.04],
>       Point[position[[1]]], Point[position[[2]]], Point[position[[3]]] ,
>       Point[position[[4]]], Point[position[[5]]], Point[position[[6]]] ,
>       Point[position[[7]]], Point[position[[8]]], Point[position[[9]]] ,
>       Point[position[[10]]], Point[position[[11]]], Point[position[[12]]] ,
>       Point[position[[13]]], Point[position[[14]]], Point[position[[15]]] ,
>       Point[position[[16]]], Point[position[[17]]], Point[position[[18]]]
>      }]
>     ]
> 
> Expected code : (not correct)
> Show[Graphics3D[For[i=1,i<19,Point[ position[[i]] ],i++]]];
> 
> ================================
> Jongung Choi
> Biologically Inspired Robotics Laboratory
> Mechanical and Aerospace Engineering
> Case Western Reserve Univ.
> Cleveland, OH 44106-7222
> Phone:  216-368-5216
> Email: jxc91 at po.cwru.edu, jxc91 at hotmail.com
> Homepage: http://biorobots.cwru.edu/Personnel/jxc/index.html


  • Prev by Date: Re: Integration of BesselJ[1,z] and BesselJ[0,z]
  • Next by Date: Re: Integration of BesselJ[1,z] and BesselJ[0,z]
  • Previous by thread: RE: For[] command in Show[] function
  • Next by thread: RE: For[] command in Show[] function