FileDocCategorySizeDatePackage
Int3.javaAPI DocAndroid 5.1 API1031Thu Mar 12 22:22:56 GMT 2015android.support.v8.renderscript

Int3

public class Int3 extends Object
Class for exposing the native RenderScript int3 type back to the Android system.

Fields Summary
public int
x
public int
y
public int
z
Constructors Summary
public Int3()

    
public Int3(int initX, int initY, int initZ)

        x = initX;
        y = initY;
        z = initZ;
    
Methods Summary