FileDocCategorySizeDatePackage
Long3.javaAPI DocAndroid 5.1 API8978Thu Mar 12 22:22:42 GMT 2015android.renderscript

Long3

public class Long3 extends Object
Vector version of the basic long type. Provides three long fields packed.

Fields Summary
public long
x
public long
y
public long
z
Constructors Summary
public Long3()

    
public Long3(long i)

hide

        this.x = this.y = this.z = i;
    
public Long3(long x, long y, long z)

        this.x = x;
        this.y = y;
        this.z = z;
    
public Long3(Long3 source)

hide

        this.x = source.x;
        this.y = source.y;
        this.z = source.z;
    
Methods Summary
public voidadd(android.renderscript.Long3 a)

hide
Vector add
param
a

        this.x += a.x;
        this.y += a.y;
        this.z += a.z;
    
public static android.renderscript.Long3add(android.renderscript.Long3 a, android.renderscript.Long3 b)

hide
Vector add
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x + b.x;
        result.y = a.y + b.y;
        result.z = a.z + b.z;

        return result;
    
public voidadd(long value)

hide
Vector add
param
value

        x += value;
        y += value;
        z += value;
    
public static android.renderscript.Long3add(android.renderscript.Long3 a, long b)

hide
Vector add
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x + b;
        result.y = a.y + b;
        result.z = a.z + b;

        return result;
    
public voidaddAt(int i, long value)

hide
add the vector field value by index
param
i
param
value

        switch (i) {
        case 0:
            x += value;
            return;
        case 1:
            y += value;
            return;
        case 2:
            z += value;
            return;
        default:
            throw new IndexOutOfBoundsException("Index: i");
        }
    
public voidaddMultiple(android.renderscript.Long3 a, long factor)

hide
Vector add Multiple
param
a
param
factor

        x += a.x * factor;
        y += a.y * factor;
        z += a.z * factor;
    
public voidcopyTo(long[] data, int offset)

hide
copy the vector to long array
param
data
param
offset

        data[offset] = (long)(x);
        data[offset + 1] = (long)(y);
        data[offset + 2] = (long)(z);
    
public voiddiv(android.renderscript.Long3 a)

hide
Vector division
param
a

        this.x /= a.x;
        this.y /= a.y;
        this.z /= a.z;
    
public static android.renderscript.Long3div(android.renderscript.Long3 a, android.renderscript.Long3 b)

hide
Vector division
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x / b.x;
        result.y = a.y / b.y;
        result.z = a.z / b.z;

        return result;
    
public voiddiv(long value)

hide
Vector division
param
value

        x /= value;
        y /= value;
        z /= value;
    
public static android.renderscript.Long3div(android.renderscript.Long3 a, long b)

hide
Vector division
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x / b;
        result.y = a.y / b;
        result.z = a.z / b;

        return result;
    
public longdotProduct(android.renderscript.Long3 a)

hide
Vector dot Product
param
a
return

        return (long)((x * a.x) + (y * a.y) + (z * a.z));
    
public static longdotProduct(android.renderscript.Long3 a, android.renderscript.Long3 b)

hide
Vector dot Product
param
a
param
b
return

        return (long)((b.x * a.x) + (b.y * a.y) + (b.z * a.z));
    
public longelementSum()

hide
return the element sum of vector
return

        return (long)(x + y + z);
    
public longget(int i)

hide
get the vector field value by index
param
i
return

        switch (i) {
        case 0:
            return (long)(x);
        case 1:
            return (long)(y);
        case 2:
            return (long)(z);
        default:
            throw new IndexOutOfBoundsException("Index: i");
        }
    
public longlength()

hide
get vector length
return

        return 3;
    
public voidmod(android.renderscript.Long3 a)

hide
Vector Modulo
param
a

        this.x %= a.x;
        this.y %= a.y;
        this.z %= a.z;
    
public static android.renderscript.Long3mod(android.renderscript.Long3 a, android.renderscript.Long3 b)

hide
Vector Modulo
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x % b.x;
        result.y = a.y % b.y;
        result.z = a.z % b.z;

        return result;
    
public voidmod(long value)

hide
Vector Modulo
param
value

        x %= value;
        y %= value;
        z %= value;
    
public static android.renderscript.Long3mod(android.renderscript.Long3 a, long b)

hide
Vector Modulo
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x % b;
        result.y = a.y % b;
        result.z = a.z % b;

        return result;
    
public voidmul(android.renderscript.Long3 a)

hide
Vector multiplication
param
a

        this.x *= a.x;
        this.y *= a.y;
        this.z *= a.z;
    
public static android.renderscript.Long3mul(android.renderscript.Long3 a, android.renderscript.Long3 b)

hide
Vector multiplication
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x * b.x;
        result.y = a.y * b.y;
        result.z = a.z * b.z;

        return result;
    
public voidmul(long value)

hide
Vector multiplication
param
value

        x *= value;
        y *= value;
        z *= value;
    
public static android.renderscript.Long3mul(android.renderscript.Long3 a, long b)

hide
Vector multiplication
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x * b;
        result.y = a.y * b;
        result.z = a.z * b;

        return result;
    
public voidnegate()

hide
set vector negate

        this.x = -x;
        this.y = -y;
        this.z = -z;
    
public voidset(android.renderscript.Long3 a)

hide
set vector value by Long3
param
a

        this.x = a.x;
        this.y = a.y;
        this.z = a.z;
    
public voidsetAt(int i, long value)

hide
set the vector field value by index
param
i
param
value

        switch (i) {
        case 0:
            x = value;
            return;
        case 1:
            y = value;
            return;
        case 2:
            z = value;
            return;
        default:
            throw new IndexOutOfBoundsException("Index: i");
        }
    
public voidsetValues(long a, long b, long c)

hide
set the vector field value by Long
param
a
param
b
param
c

        this.x = a;
        this.y = b;
        this.z = c;
    
public static android.renderscript.Long3sub(android.renderscript.Long3 a, android.renderscript.Long3 b)

hide
Vector subtraction
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x - b.x;
        result.y = a.y - b.y;
        result.z = a.z - b.z;

        return result;
    
public voidsub(long value)

hide
Vector subtraction
param
value

        x -= value;
        y -= value;
        z -= value;
    
public static android.renderscript.Long3sub(android.renderscript.Long3 a, long b)

hide
Vector subtraction
param
a
param
b
return

        Long3 result = new Long3();
        result.x = a.x - b;
        result.y = a.y - b;
        result.z = a.z - b;

        return result;
    
public voidsub(android.renderscript.Long3 a)

hide
Vector subtraction
param
a

        this.x -= a.x;
        this.y -= a.y;
        this.z -= a.z;