MathGroup Archive 1996

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

Search the Archive

Re: Graphics3D

  • To: mathgroup at smc.vnet.net
  • Subject: [mg5458] Re: [mg5392] Graphics3D
  • From: Clemens Frey <Clemens.Frey at uni-bayreuth.de>
  • Date: Sat, 7 Dec 1996 00:26:36 -0500
  • Organization: uni-bayreuth.de
  • Sender: owner-wri-mathgroup at wolfram.com

Rick Tschudin wrote:
> 
> I defined 4 Points , created a List of them and used Show to display
> them. This worked nicely. Then I defined 3 Lines, created a list of
> lines and tried to use Show to display them.  Can anyone tell me why
> this failed and how to succeed. Thanks for your time.

Hi,

Probably you forgot a list or something. Example that works:

Graphics3D[
{ 
  Line[{{0,2,0},{0,3,0}}],
  Line[{{0,2,0},{1,3,0}}],
  Line[{{0,3,0},{1,3,0}}]
}
] //Show;

Clemens
(-: Clemens.Frey at uni-bayreuth.de :-)


  • Prev by Date: : select a range of elements from a nested list
  • Next by Date: Combinations function?
  • Previous by thread: : select a range of elements from a nested list
  • Next by thread: Re: Graphics3D