org.freehep.j3d.plot
Interface Unbinned3DData


public interface Unbinned3DData

A data source for unbinned 3D data which is used by the 3D scatter plot. Any class which implements this interface can be used to provide Data for a lego or surface plot.

Version:
$Id: Unbinned3DData.java 8584 2006-08-10 23:06:37Z duns $
Author:
Joy Kyriakopulos (joyk@fnal.gov)

Method Summary
 javax.vecmath.Color3b colorAt(int index)
          Get the Color of the specified point
 int getNPoints()
          The number of points in the scatter plot
 javax.vecmath.Point3f pointAt(int index)
          The x,y,z coordinate of the specified point
 float xMax()
          Axis maximum on the X Axis
 float xMin()
          Axis minimum on the X Axis
 float yMax()
          Axis maximum on the Y Axis
 float yMin()
          Axis minimum on the Y Axis
 float zMax()
          Maximum data value on the Z Axis
 float zMin()
          Minimum data value on the Z Axis
 

Method Detail

xMin

float xMin()
Axis minimum on the X Axis


xMax

float xMax()
Axis maximum on the X Axis


yMin

float yMin()
Axis minimum on the Y Axis


yMax

float yMax()
Axis maximum on the Y Axis


zMin

float zMin()
Minimum data value on the Z Axis


zMax

float zMax()
Maximum data value on the Z Axis


getNPoints

int getNPoints()
The number of points in the scatter plot


pointAt

javax.vecmath.Point3f pointAt(int index)
The x,y,z coordinate of the specified point


colorAt

javax.vecmath.Color3b colorAt(int index)
Get the Color of the specified point



Copyright © 2000-2006 FreeHEP. All Rights Reserved.