Uses of Class
org.openmali.vecmath2.Tuple4i

Packages that use Tuple4i
org.openmali.vecmath2   
org.openmali.vecmath2.pools   
 

Uses of Tuple4i in org.openmali.vecmath2
 

Methods in org.openmali.vecmath2 that return Tuple4i
 Tuple4i Tuple4i.add(int x, int y, int z, int w)
          Adds the given parameters to this tuple's values.
 Tuple4i Tuple4i.addW(int v)
          Adds v to this tuple's w value.
 Tuple4i Tuple4i.addX(int v)
          Adds v to this tuple's x value.
 Tuple4i Tuple4i.addY(int v)
          Adds v to this tuple's y value.
 Tuple4i Tuple4i.addZ(int v)
          Adds v to this tuple's z value.
 Tuple4i Tuple4i.asReadOnly()
          
 Tuple4i Tuple4i.clone()
          Creates and returns a copy of this object.
 Tuple4i Tuple4i.div(int vx, int vy, int vz, int vw)
          Divides this tuple's values by vx, vy, vz.
 Tuple4i Tuple4i.divW(int v)
          Divides this tuple's w value by v.
 Tuple4i Tuple4i.divX(int v)
          Divides this tuple's x value by v.
 Tuple4i Tuple4i.divY(int v)
          Divides this tuple's y value by v.
 Tuple4i Tuple4i.divZ(int v)
          Divides this tuple's z value by v.
static Tuple4i Tuple4i.fromPool()
          Allocates an Tuple4i instance from the pool.
static Tuple4i Tuple4i.fromPool(int x, int y, int z, int w)
          Allocates an Tuple4i instance from the pool.
static Tuple4i Tuple4i.fromPool(Tuple4i tuple)
          Allocates an Tuple4i instance from the pool.
 Tuple4i Tuple4i.getReadOnly()
          
 Tuple4i Tuple4i.mul(int vx, int vy, int vz, int vw)
          Multiplies this tuple's values with vx, vy.
 Tuple4i Tuple4i.mulW(int v)
          Multiplies this tuple's w value with v.
 Tuple4i Tuple4i.mulX(int v)
          Multiplies this tuple's x value with v.
 Tuple4i Tuple4i.mulY(int v)
          Multiplies this tuple's y value with v.
 Tuple4i Tuple4i.mulZ(int v)
          Multiplies this tuple's z value with v.
static Tuple4i Tuple4i.newReadOnly()
          Creates a new Tuple4i instance.
static Tuple4i Tuple4i.newReadOnly(int[] values)
          Creates a new Tuple4i instance.
static Tuple4i Tuple4i.newReadOnly(int x, int y, int z, int w)
          Creates a new Tuple4i instance.
static Tuple4i Tuple4i.newReadOnly(Tuple4i tuple)
          Creates a new Tuple4i instance.
 Tuple4i Tuple4i.scale(int factorX, int factorY, int factorZ, int factorW)
          Sets the value of this tuple to the scalar multiplication of tuple t1.
 Tuple4i Tuple4i.setValues(int x, int y, int z, int w)
          Sets all three values of this Tuple to the specified ones.
 Tuple4i Tuple4i.setW(int w)
          Sets the value of the w-element of this tuple.
 Tuple4i Tuple4i.setX(int x)
          Sets the value of the x-element of this tuple.
 Tuple4i Tuple4i.setY(int y)
          Sets the value of the y-element of this tuple.
 Tuple4i Tuple4i.setZ(int z)
          Sets the value of the z-element of this tuple.
 Tuple4i Tuple4i.sub(int x, int y, int z, int w)
          Subtracts the given parameters from this tuple's values.
 Tuple4i Tuple4i.subW(int v)
          Subtracts v from this tuple's w value.
 Tuple4i Tuple4i.subX(int v)
          Subtracts v from this tuple's x value.
 Tuple4i Tuple4i.subY(int v)
          Subtracts v from this tuple's y value.
 Tuple4i Tuple4i.subZ(int v)
          Subtracts v from this tuple's z value.
 Tuple4i Tuple4i.w(int w)
          Sets the value of the w-element of this tuple.
 Tuple4i Tuple4i.x(int x)
          Sets the value of the x-element of this tuple.
 Tuple4i Tuple4i.y(int y)
          Sets the value of the y-element of this tuple.
 Tuple4i Tuple4i.z(int z)
          Sets the value of the z-element of this tuple.
 

Methods in org.openmali.vecmath2 with parameters of type Tuple4i
 boolean Tuple4i.equals(Tuple4i tuple2)
          Returns true if all of the data members of GVector vector1 are equal to the corresponding data members in this GVector.
static Tuple4i Tuple4i.fromPool(Tuple4i tuple)
          Allocates an Tuple4i instance from the pool.
static Tuple4i Tuple4i.newReadOnly(Tuple4i tuple)
          Creates a new Tuple4i instance.
static void Tuple4i.toPool(Tuple4i o)
          Stores the given Tuple4i instance in the pool.
 

Constructors in org.openmali.vecmath2 with parameters of type Tuple4i
Tuple4i(boolean readOnly, Tuple4i that)
          Creates a new Tuple4i instance.
Tuple4i(Tuple4i that)
          Creates a new Tuple4i instance.
 

Uses of Tuple4i in org.openmali.vecmath2.pools
 

Methods in org.openmali.vecmath2.pools that return Tuple4i
 Tuple4i Tuple4iPool.alloc()
          
 Tuple4i Tuple4iPool.alloc(int x, int y, int z, int w)
           
protected  Tuple4i Tuple4iPool.newInstance()
          Creates a new instance of a pooled object.