New in Wolfram
Mathematica
8: New and Improved Scientific and Information Visualization
◄
previous
|
next
►
Graphics & Visualization
Associate Regions with Discrete Points in 3D
Associate regions with points in
DiscretePlot3D
using a variety of named and parametrized extent sizes.
In[1]:=
X
sizes = {#, #} & /@ {{0, 0}, {0, Scaled[0.5]}, {0, Scaled[0.75]}, {Scaled[0.5], 0}, {Scaled[0.5], Scaled[0.5]}, Left, {Scaled[0.75], 0}, Right, Full};
In[2]:=
X
SeedRandom[1]; Grid[ Partition[ Table[DiscretePlot3D[Sin[x] + Sqrt[x y], {x, 5}, {y, 5}, ExtentSize -> size, PlotLabel -> size, PlotMarkers -> {"Sphere", 0.03}, PlotStyle -> ColorData["Rainbow", RandomReal[]]], {size, sizes}], 3]]
Out[2]=