NOTICE: This version of the NSF Unidata web site (archive.unidata.ucar.edu) is no longer being updated.
Current content can be found at unidata.ucar.edu.
To learn about what's going on, see About the Archive Site.
There have been a number of questions about toggling data depictions on and off in displays. We have added a method: public abstract void toggle(boolean on); to the DataRenderer class. This can be used as follows: DisplayImpl display = new DisplayImplJ3D("display"); display.addMap(...); . . . DataReference ref = new DataReferenceImpl("ref"); ref.setData(data); DataRenderer renderer = new DefaultRendererJ3D(); display.addReferences(renderer, ref); . . . renderer.toggle(false); // turn off depiction of 'data' . . . renderer.toggle(true); // turn depiction of 'data' back on Cheers, Bill ---------------------------------------------------------- Bill Hibbard, SSEC, 1225 W. Dayton St., Madison, WI 53706 hibbard@xxxxxxxxxxxxxxxxx 608-263-4427 fax: 608-263-6738 http://www.ssec.wisc.edu/~billh/vis.html
visad
archives: