FileDocCategorySizeDatePackage
Short3.javaAPI DocAndroid 5.1 API9379Thu Mar 12 22:22:42 GMT 2015android.renderscript

Short3

public class Short3 extends Object
Vector version of the basic short type. Provides three short fields packed.

Fields Summary
public short
x
public short
y
public short
z
Constructors Summary
public Short3()

    
public Short3(short i)

hide

        this.x = this.y = this.z = i;
    
public Short3(short x, short y, short z)

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

hide

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

hide
Vector add
param
a

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

hide
Vector add
param
a
param
b
return

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

        return result;
    
public voidadd(short value)

hide
Vector add
param
value

        x += value;
        y += value;
        z += value;
    
public static android.renderscript.Short3add(android.renderscript.Short3 a, short b)

hide
Vector add
param
a
param
b
return

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

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

hide
Vector add Multiple
param
a
param
factor

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

hide
copy the vector to short array
param
data
param
offset

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

hide
Vector division
param
a

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

hide
Vector division
param
a
param
b
return

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

        return result;
    
public voiddiv(short value)

hide
Vector division
param
value

        x /= value;
        y /= value;
        z /= value;
    
public static android.renderscript.Short3div(android.renderscript.Short3 a, short b)

hide
Vector division
param
a
param
b
return

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

        return result;
    
public shortdotProduct(android.renderscript.Short3 a)

hide
Vector dot Product
param
a
return

        return (short)((x * a.x) + (y * a.y) + (z * a.z));
    
public static shortdotProduct(android.renderscript.Short3 a, android.renderscript.Short3 b)

hide
Vector dot Product
param
a
param
b
return

        return (short)((b.x * a.x) + (b.y * a.y) + (b.z * a.z));
    
public shortelementSum()

hide
return the element sum of vector
return

        return (short)(x + y + z);
    
public shortget(int i)

hide
get the vector field value by index
param
i
return

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

hide
get vector length
return

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

hide
Vector Modulo
param
a

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

hide
Vector Modulo
param
a
param
b
return

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

        return result;
    
public voidmod(short value)

hide
Vector Modulo
param
value

        x %= value;
        y %= value;
        z %= value;
    
public static android.renderscript.Short3mod(android.renderscript.Short3 a, short b)

hide
Vector Modulo
param
a
param
b
return

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

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

hide
Vector multiplication
param
a

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

hide
Vector multiplication
param
a
param
b
return

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

        return result;
    
public voidmul(short value)

hide
Vector multiplication
param
value

        x *= value;
        y *= value;
        z *= value;
    
public static android.renderscript.Short3mul(android.renderscript.Short3 a, short b)

hide
Vector multiplication
param
a
param
b
return

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

        return result;
    
public voidnegate()

hide
set vector negate

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

hide
set vector value by Short3
param
a

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

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

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

hide
Vector subtraction
param
a
param
b
return

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

        return result;
    
public voidsub(short value)

hide
Vector subtraction
param
value

        x -= value;
        y -= value;
        z -= value;
    
public static android.renderscript.Short3sub(android.renderscript.Short3 a, short b)

hide
Vector subtraction
param
a
param
b
return

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

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

hide
Vector subtraction
param
a

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