Re: Problem plotting lists of 3d graphics objects
- To: mathgroup@smc.vnet.net
- Subject: [mg11337] Re: Problem plotting lists of 3d graphics objects
- From: Allan Hayes <hay@haystack.demon.co.uk>
- Date: Fri, 6 Mar 1998 00:40:57 -0500
- References: <6dg4rb$2lf@smc.vnet.net>
Tony wrote: > Whilst this command prints a nice graph: > Show[Graphics3D[ > { > AbsoluteThickness[4], > Hue[BidderHue[1]], > BidderLines[1] > } > ], ViewPoint -> {0,-0.5,-2}, BoxRatios -> {5,2,2}, > Axes -> True, > > ] > > If I generate the Graphics3D objects like this: > > DemObj[i_]:= Graphics3D[ > AbsoluteThickness[4], > Hue[BidderHue[i]], > BidderLines [i] > ] > > and build a table of these objects, then > > Show[MY_TABLE_OF_3D_OBJECTS, .... ] > Returns an error UNLESS the table contains no Thickness, Hue, etc > options. Tony: 1) The first example needs the comma after True removing 2) The definition of DemObj needs {..} as in the first example: thus DemObj[i_]:= Graphics3D[ { AbsoluteThickness[4], Hue[BidderHue[i]], BidderLines [i] } ] -- Allan Hayes Training and Consulting Leicester, UK hay@haystack.demon.co.uk http://www.haystack.demon.co.uk voice: +44 (0)116 271 4198 fax: +44 (0)116 271 8642