Draw a Sphere
|
Run the code to draw a sphere. Drag to rotate it:
1.
Graphics3D[Sphere[]]
In[]:=
Set the color of the sphere. Try other colors, like or :
2.
Graphics3D[{
Red
,Sphere[]}]In[]:=
Make the sphere partly transparent. Try other values of opacity:
Note: opacity values should be between 0 and 1.
3.
Graphics3D[{Red,Opacity[
.5
],Sphere[]}]In[]:=