MathGroup Archive 2001

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

Search the Archive

Re: Transparent Layering w/ Solids

  • To: mathgroup at smc.vnet.net
  • Subject: [mg26519] Re: [mg26507] Transparent Layering w/ Solids
  • From: BobHanlon at aol.com
  • Date: Mon, 1 Jan 2001 02:32:50 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

Needs["Graphics`Shapes`"];

Show[Graphics3D[{Torus[], Sphere[]}]];

You can WireFrame all of the objects

Show[WireFrame[Graphics3D[{Torus[], Sphere[]}]]];

Or you can WireFrame selected objects

Show[{Graphics3D[Sphere[]], WireFrame[Graphics3D[Torus[]]]}];


Bob Hanlon

In a message dated 12/30/00 2:18:35 AM, atjurhs at my-deja.com writes:

>Does anyone know how to show transparent layering of solid objects, so
>that I can display two solid objects laying atop each other or
>intersecting each other at the same time?  I know this is possible with
>OpenGL and with other systems, but I'd like to do it directly with
>Mathematica.
>


  • Prev by Date: How can I transform the number of 123.456 into "123.456"?
  • Next by Date: Re: Combining 3D Graphics
  • Previous by thread: RE: How can I transform the number of 123.456 into "123.456"?
  • Next by thread: Re: Transparent Layering w/ Solids