org.jzy3d.maths
Class Grid

java.lang.Object
  extended by org.jzy3d.maths.Grid

public class Grid
extends Object


Field Summary
protected  BoundingBox3d bounds
           
protected  float[] x
           
protected  float[] y
           
protected  float[][] z
           
 
Constructor Summary
Grid()
           
Grid(float[] x, float[] y, float[][] z)
           
Grid(int[] x, int[] y, int[][] z)
           
 
Method Summary
 BoundingBox3d getBounds()
           
 float[] getX()
           
 float[] getY()
           
 float[][] getZ()
           
 void setData(float[] x, float[] y, float[][] z)
           
 void setData(int[] x, int[] y, int[][] z)
           
protected  float[] toFloatArray(int[] input)
           
protected  float[][] toFloatArray(int[][] input)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x

protected float[] x

y

protected float[] y

z

protected float[][] z

bounds

protected BoundingBox3d bounds
Constructor Detail

Grid

public Grid()

Grid

public Grid(float[] x,
            float[] y,
            float[][] z)

Grid

public Grid(int[] x,
            int[] y,
            int[][] z)
Method Detail

setData

public void setData(float[] x,
                    float[] y,
                    float[][] z)

setData

public void setData(int[] x,
                    int[] y,
                    int[][] z)

getX

public float[] getX()

getY

public float[] getY()

getZ

public float[][] getZ()

getBounds

public BoundingBox3d getBounds()

toFloatArray

protected float[] toFloatArray(int[] input)

toFloatArray

protected float[][] toFloatArray(int[][] input)