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

Float3

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

Fields Summary
public float
x
public float
y
public float
z
Constructors Summary
public Float3()

    
public Float3(float initX, float initY, float initZ)

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