​

Draw a Sphere
Get started with 3D graphics by creating a single 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
Orange
or
Blue
:
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[]:=