Uses of Class
hmi.graphics.scenegraph.VertexAttribute

Packages that use VertexAttribute
hmi.graphics.opengl The HmiGraphics opengl package contains code for opengl based rendering, that is still independent from particular OpenGL java bindings, like jogl and lwjgl 
hmi.graphics.scenegraph The HmiGraphics scenegraph package contains code for graphics scenegraphs in a render platform independent way, and also independent from a particular graphics file format. 
 

Uses of VertexAttribute in hmi.graphics.opengl
 

Methods in hmi.graphics.opengl with parameters of type VertexAttribute
 int GLSkinnedMesh.addGLVertexAttribute(VertexAttribute va)
          Adds a new vertex attribute, and returns its index number.
 int GLBasicMesh.addGLVertexAttribute(VertexAttribute va)
          Adds a new vertex attribute, and returns its index number.
 

Constructors in hmi.graphics.opengl with parameters of type VertexAttribute
GLVertexAttribute(VertexAttribute va)
          Create a new GLVertexAttribute from a generic VertexAttribute
 

Uses of VertexAttribute in hmi.graphics.scenegraph
 

Fields in hmi.graphics.scenegraph with type parameters of type VertexAttribute
private  ArrayList<VertexAttribute> GMesh.attributeList
           
private  ArrayList<ArrayList<VertexAttribute>> GMesh.morphAttributeLists
           
 

Methods in hmi.graphics.scenegraph that return VertexAttribute
 VertexAttribute GMesh.getVertexAttribute(int morphTarget, String attributeName)
          Retrieves a named attribute; this could be null if the attribute is not defined for this GMesh.
 VertexAttribute GMesh.getVertexAttribute(String attributeName)
          Retrieves a named attribute; this could be null if the attribute is not defined for this GMesh.
private  VertexAttribute GMesh.requestVertexAttribute(int morphTarget, String attributeName)
           
 

Methods in hmi.graphics.scenegraph that return types with arguments of type VertexAttribute
 ArrayList<VertexAttribute> GMesh.getVertexAttributeList()
          Returns the list with VertexAttributes for this GMesh
 ArrayList<VertexAttribute> GMesh.getVertexAttributeList(int morphTarget)
          Returns the list with VertexAttributes for this GMesh
 

Methods in hmi.graphics.scenegraph with parameters of type VertexAttribute
private  void GMesh.addVertexAttribute(int morphTarget, VertexAttribute attr)