Double4public 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;
|
|