Re: shape thickness

Hi Leah,

> I'm using VisADLineArray to draw shapes on my data fields.
> But, I'd like the shapes to have thicker lines.  Any idea
> how to do this?

You can do it with a ConstantMap to LineWidth, such as:

    ConstantMap[] cmaps = {new ConstantMap(3.0, Display.LineWidth)};
    display.addReference(ref, cmaps);

where ref is the DataReferenceImpl to the Data that includes RealTypes
mapped to Shape.

Good luck,
Bill