|
Re: [mg5392] Graphics3D
Posted:
Dec 6, 1996 11:31 PM
|
|
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@uni-bayreuth.de :-)
|
|