FileDocCategorySizeDatePackage
Int3.javaAPI DocAndroid 5.1 API8874Thu Mar 12 22:22:42 GMT 2015android.renderscript

Int3

public class Int3 extends Object
Vector version of the basic int type. Provides three int fields packed.

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

    
public Int3(int i)

hide

        this.x = this.y = this.z = i;
    
public Int3(int x, int y, int z)

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

hide

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

hide
Vector add
param
a

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

hide
Vector add
param
a
param
b
return

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

        return result;
    
public voidadd(int value)

hide
Vector add
param
value

        x += value;
        y += value;
        z += value;
    
public static android.renderscript.Int3add(android.renderscript.Int3 a, int b)

hide
Vector add
param
a
param
b
return

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

        return result;
    
public voidaddAt(int i, int 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.Int3 a, int factor)

hide
Vector add Multiple
param
a
param
factor

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

hide
copy the vector to int array
param
data
param
offset

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

hide
Vector division
param
a

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

hide
Vector division
param
a
param
b
return

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

        return result;
    
public voiddiv(int value)

hide
Vector division
param
value

        x /= value;
        y /= value;
        z /= value;
    
public static android.renderscript.Int3div(android.renderscript.Int3 a, int b)

hide
Vector division
param
a
param
b
return

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

        return result;
    
public intdotProduct(android.renderscript.Int3 a)

hide
Vector dot Product
param
a
return

        return (int)((x * a.x) + (y * a.y) + (z * a.z));
    
public static intdotProduct(android.renderscript.Int3 a, android.renderscript.Int3 b)

hide
Vector dot Product
param
a
param
b
return

        return (int)((b.x * a.x) + (b.y * a.y) + (b.z * a.z));
    
public intelementSum()

hide
return the element sum of vector
return

        return (int)(x + y + z);
    
public intget(int i)

hide
get the vector field value by index
param
i
return

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

hide
get vector length
return

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

hide
Vector Modulo
param
a

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

hide
Vector Modulo
param
a
param
b
return

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

        return result;
    
public voidmod(int value)

hide
Vector Modulo
param
value

        x %= value;
        y %= value;
        z %= value;
    
public static android.renderscript.Int3mod(android.renderscript.Int3 a, int b)

hide
Vector Modulo
param
a
param
b
return

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

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

hide
Vector multiplication
param
a

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

hide
Vector multiplication
param
a
param
b
return

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

        return result;
    
public voidmul(int value)

hide
Vector multiplication
param
value

        x *= value;
        y *= value;
        z *= value;
    
public static android.renderscript.Int3mul(android.renderscript.Int3 a, int b)

hide
Vector multiplication
param
a
param
b
return

        Int3 result = new Int3();
        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.Int3 a)

hide
set vector value by Int3
param
a

        this.x = a.x;
        this.y = a.y;
        this.z = a.z;
    
public voidsetAt(int i, int 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(int a, int b, int c)

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

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

hide
Vector subtraction
param
a
param
b
return

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

        return result;
    
public voidsub(int value)

hide
Vector subtraction
param
value

        x -= value;
        y -= value;
        z -= value;
    
public static android.renderscript.Int3sub(android.renderscript.Int3 a, int b)

hide
Vector subtraction
param
a
param
b
return

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

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

hide
Vector subtraction
param
a

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