Package org.jzy3d.maths
Class Grid
- java.lang.Object
-
- org.jzy3d.maths.Grid
-
public class Grid extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected BoundingBox3dboundsprotected float[]xprotected float[]yprotected float[][]z
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BoundingBox3dgetBounds()float[]getX()float[]getY()float[][]getZ()voidsetData(float[] x, float[] y, float[][] z)voidsetData(int[] x, int[] y, int[][] z)protected float[]toFloatArray(int[] input)protected float[][]toFloatArray(int[][] input)
-
-
-
Field Detail
-
x
protected float[] x
-
y
protected float[] y
-
z
protected float[][] z
-
bounds
protected BoundingBox3d bounds
-
-
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)
-
-