Change the Color of Graphics
- To: mathgroup at smc.vnet.net
- Subject: [mg17286] Change the Color of Graphics
- From: Clara <cnoemia at ccg.uc.pt>
- Date: Fri, 30 Apr 1999 23:22:22 -0400
- Sender: owner-wri-mathgroup at wolfram.com
I have this Graphic:
Needs["Graphics`ContourPlot3D`"]
f[x_,y_,z_]= 3x+2y+z;
g[x_,y_,z_]= x^2+y^2-z^2;
g1=ContourPlot3D[f[x,y,z],{x,-2,2},{y,-2,2},{z,-2,2},
PlotPoints->2, Boxed->False,DisplayFunction->Identity];
g2=ContourPlot3D[g[x,y,z],{x,-2,2},{y,-2,2},{z,-2,2},
PlotPoints->5, Boxed->False,ColorOutput-> RGBColor[0,255,255],
DisplayFunction->Identity];
Show[g1,g2,PolygonIntersections->True,DisplayFunction->$DisplayFunction]
I want the visualize the intersection. I need the change the color of
the Graphics. Put the color more clear.