Package edu.washington.NVisF.plotter

Class Summary
AlphaColoringStrategy An AlphaColoringStrategy uses data from a PlotCommand to compute alpha values for a set of data objects.
AppearanceStrategy An Appearance is a Java3D object that packages references to several different objects describing how to render a given 3D object.
ColoringStrategy A ColoringStrategy defines how to construct colors from the available data.
LineCloudStrategy A LineCloudStrategy provides a strategy for representing a 3D vector field as a single 3D visualization object where the vector for each data object is represented as a line starting from the object's position.
ObjectGroup An ObjectGroup wraps a 3D scene that can be added to a viewer.
PlotCommand A PlotCommand encapsulates a request to represent a certain set of data with a 3D representation suitable for viewing.
PlotManager A PlotManager stores PlotStrategy objects so that they can be retrieved by name.
PlotStrategy This is the abstract base class for all plot strategies.
PlotterMessageHandler The PlotterMessageHandler provides static methods to handle exceptions and messages generated by plotting classes.
PointCloudAppearanceStrategy This class constructs and returns an Appearance object appropriate for use with a PointCloudStrategy.
PointCloudStrategy A PointCloudStrategy defines a strategy for representing 3D data as a single 3D visualization object where each data object is rendered as a single pixel.
PolygonStrategy A PolygonStrategy provides the coordinates of the vertices of a polygon used to render an individual data object.
PositionStrategy A PositionStrategy defines how to construct 3-D positions from the data.
SandColoringStrategy This class implements a coloring strategy for sandpiles with a bimodal size distribution.
SplitPointCloudStrategy A SplitPointCloudStrategy is exactly like a PointCloudStrategy except that the points are split into a set of GeometryArrays so that no more than a fixed number of vertices are in each GeometryArray.
SSColoringStrategy This class implements a particular coloring strategy used by the SS (solar system) analysis routines, in which the data contain an integer field called "color" that is mapped to a set of colors: 0 = black, 1 = white, 2 = red, 3 = green, 4 = blue, 5 = yellow, 6 = magenta, 7 = cyan, 8 = gold, 9 = pink, 10 = orange, 11 = khaki, 12 = violet, 13 = maroon, 14 = aqua, 15 = navy, 16-255 = increasing grays from black to white (16 = black, 255 = white) this class maps integers outside the range [0-255] to white.
VectorStrategy A VectorStrategy returns a vector for each data object available from a specified PlotCommand.