| Take an array of points in three dimensions. The array of points is used to generate
vertices of a polygonal mesh. It creates a piece of a sphere.
|
In[1]:=
<<Graphics`Graphics3D`
In[2]:=
apts = Table[{Cos[t] Cos[u], Sin[t] Cos[u], Sin[u]}, {t, 0, Pi, Pi/5}, {u, 0, Pi/2, Pi/10}];
In[3]:=
lsp = ListSurfacePlot3D[apts]
In[4]:=
JavaView[lsp]
|