Uses of Interface
de.javagl.utils.obj.FloatTuple

Packages that use FloatTuple
de.javagl.utils.obj   
de.javagl.utils.obj.impl   
 

Uses of FloatTuple in de.javagl.utils.obj
 

Methods in de.javagl.utils.obj that return FloatTuple
 FloatTuple Mtl.getKa()
          Returns the ambient component of the material
 FloatTuple Mtl.getKd()
          Returns the diffuse component of the material
 FloatTuple Mtl.getKs()
          Returns the specular component of the material
 FloatTuple Obj.getNormal(int index)
          Returns the normal with the given index.
 FloatTuple Obj.getTexCoord(int index)
          Returns the texture coordinate with the given index.
 FloatTuple Obj.getVertex(int index)
          Returns the vertex with the given index.
 

Methods in de.javagl.utils.obj with parameters of type FloatTuple
 void ObjTarget.addNormal(FloatTuple normal)
          Add the given normal to this ObjTarget
 void ObjTarget.addTexCoord(FloatTuple texCoord)
          Add the given texture coordinate to this ObjTarget
 void ObjTarget.addVertex(FloatTuple vertex)
          Add the given vertex to this ObjTarget
 

Uses of FloatTuple in de.javagl.utils.obj.impl
 

Classes in de.javagl.utils.obj.impl that implement FloatTuple
 class DefaultFloatTuple
          Default implementation of a FloatTuple
 

Methods in de.javagl.utils.obj.impl that return FloatTuple
 FloatTuple DefaultMtl.getKa()
           
 FloatTuple DefaultMtl.getKd()
           
 FloatTuple DefaultMtl.getKs()
           
 FloatTuple DefaultObj.getNormal(int index)
           
 FloatTuple DefaultObj.getTexCoord(int index)
           
 FloatTuple DefaultObj.getVertex(int index)
           
 

Methods in de.javagl.utils.obj.impl with parameters of type FloatTuple
 void DefaultObj.addNormal(FloatTuple normal)
           
 void DefaultObj.addTexCoord(FloatTuple texCoord)
           
 void DefaultObj.addVertex(FloatTuple vertex)
           
 

Constructors in de.javagl.utils.obj.impl with parameters of type FloatTuple
DefaultFloatTuple(FloatTuple other)
          Copy constructor.