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

Double4

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

Fields Summary
public double
x
public double
y
public double
z
public double
w
Constructors Summary
public Double4()

    
public Double4(double initX, double initY, double initZ, double initW)

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