Uses of Class
org.openmali.vecmath2.TexCoord4f

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

Uses of TexCoord4f in org.openmali.vecmath2
 

Methods in org.openmali.vecmath2 that return TexCoord4f
 TexCoord4f TexCoord4f.add(float s, float t, float p, float q)
          Adds the given parameters to this tuple's values.
 TexCoord4f TexCoord4f.addP(float v)
          Adds v to this texCoord's P value.
 TexCoord4f TexCoord4f.addQ(float v)
          Adds v to this texCoord's Q value.
 TexCoord4f TexCoord4f.addS(float v)
          Adds v to this texCoord's S value.
 TexCoord4f TexCoord4f.addT(float v)
          Adds v to this texCoord's T value.
 TexCoord4f TexCoord4f.clone()
          Creates and returns a copy of this object.
 TexCoord4f TexCoord4f.div(float vs, float vt, float vp, float vq)
          Divides this texCoord's values by vs, vt, vp, vq.
 TexCoord4f TexCoord4f.divP(float v)
          Divides this texCoord's P value by v.
 TexCoord4f TexCoord4f.divQ(float v)
          Divides this texCoord's Q value by v.
 TexCoord4f TexCoord4f.divS(float v)
          Divides this texCoord's S value by v.
 TexCoord4f TexCoord4f.divT(float v)
          Divides this texCoord's T value by v.
static TexCoord4f TexCoord4f.fromPool()
          Allocates an TexCoord4f instance from the pool.
static TexCoord4f TexCoord4f.fromPool(float s, float t, float p, float q)
          Allocates an TexCoord4f instance from the pool.
 TexCoord4f Vertex3f.getTexCoord4()
           
 TexCoord4f TexCoord4f.mul(float factor)
          Sets the value of this tuple to the scalar multiplication of itself.
 TexCoord4f TexCoord4f.mul(float vs, float vt, float vp, float vq)
          Multiplies this texCoord's values with vs, vt, vp, vq.
 TexCoord4f TexCoord4f.mulP(float v)
          Multiplies this texCoord's P value with v.
 TexCoord4f TexCoord4f.mulQ(float v)
          Multiplies this texCoord's Q value with v.
 TexCoord4f TexCoord4f.mulS(float v)
          Multiplies this texCoord's S value with v.
 TexCoord4f TexCoord4f.mulT(float v)
          Multiplies this texCoord's T value with v.
static TexCoord4f TexCoord4f.newReadOnly(float[] values)
          Creates a new TexCoord4f instance.
static TexCoord4f TexCoord4f.newReadOnly(float s, float t, float p, float q)
          Creates a new TexCoord4f instance.
static TexCoord4f TexCoord4f.newReadOnly(TexCoord4f texCoord)
          Creates a new TexCoord4f instance.
 TexCoord4f TexCoord4f.p(float p)
          Sets the P (3rd) texCoord component.
 TexCoord4f TexCoord4f.q(float q)
          Sets the Q (4th) texCoord component.
 TexCoord4f TexCoord4f.s(float s)
          Sets the S (1st) texCoord component.
 TexCoord4f TexCoord4f.set(float s, float t, float p, float q)
          Sets all values of this texCoord to the specified ones.
 TexCoord4f TexCoord4f.setP(float p)
          Sets the P (3rd) texCoord component.
 TexCoord4f TexCoord4f.setQ(float q)
          Sets the Q (4th) texCoord component.
 TexCoord4f TexCoord4f.setS(float s)
          Sets the S (1st) texCoord component.
 TexCoord4f TexCoord4f.setT(float t)
          Sets the T (2nd) texCoord component.
 TexCoord4f TexCoord4f.sub(float s, float t, float p, float q)
          Subtracts the given parameters from this tuple's values.
 TexCoord4f TexCoord4f.subP(float v)
          Subtracts v from this texCoord's P value.
 TexCoord4f TexCoord4f.subQ(float v)
          Subtracts v from this texCoord's Q value.
 TexCoord4f TexCoord4f.subS(float v)
          Subtracts v from this texCoord's S value.
 TexCoord4f TexCoord4f.subT(float v)
          Subtracts v from this texCoord's T value.
 TexCoord4f TexCoord4f.t(float t)
          Sets the T (2nd) texCoord component.
 

Methods in org.openmali.vecmath2 with parameters of type TexCoord4f
 void Vertex3f.get(Tuple3f coord, Vector3f normal, Colorf color, TexCoord4f texCoord)
           
 void Vertex3f.getTexCoord4(TexCoord4f texCoord)
           
static TexCoord4f TexCoord4f.newReadOnly(TexCoord4f texCoord)
          Creates a new TexCoord4f instance.
 void Vertex3f.set(Tuple3f coord, Vector3f normal, Colorf color, TexCoord4f texCoord)
           
 void Vertex3f.setTexCoord4(TexCoord4f texCoord)
           
static void TexCoord4f.toPool(TexCoord4f o)
          Stores the given TexCoord4f instance in the pool.
 

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

Uses of TexCoord4f in org.openmali.vecmath2.pools
 

Methods in org.openmali.vecmath2.pools that return TexCoord4f
 TexCoord4f TexCoord4fPool.alloc()
          
 TexCoord4f TexCoord4fPool.alloc(float s, float t, float p, float q)
           
protected  TexCoord4f TexCoord4fPool.newInstance()
          Creates a new instance of a pooled object.