Uses of Class
hmi.graphics.scenegraph.GShape

Packages that use GShape
hmi.graphics.collada.scenegraph Support for loading Collada Graphics files 
hmi.graphics.opengl.scenegraph The HmiGraphics opengl.scenegraph package contains code for OpenGL based scenegraphs, on top of the more basic opengl package. 
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 GShape in hmi.graphics.collada.scenegraph
 

Fields in hmi.graphics.collada.scenegraph with type parameters of type GShape
private static List<GShape> InstanceGeometryTranslator.EMPTY_GSHAPE_LIST
           
private static List<GShape> InstanceControllerTranslator.EMPTY_GSHAPE_LIST
           
 

Methods in hmi.graphics.collada.scenegraph that return types with arguments of type GShape
static List<GShape> InstanceGeometryTranslator.getGShapeList(Collada collada, Geometry geom, BindMaterial bindMaterial)
          Returns a list of GShape objects, each containing a GMesh plus GMaterial, extracted from the specified Collada mesh and bind_material.
static List<GShape> InstanceGeometryTranslator.getSkinnedGShapeList(Collada collada, Skin skin, String[] skeletonIds, BindMaterial bindMaterial, List<GSkinnedMesh> skinnedMeshes)
          Returns a list of GShape objects, each containing a GSkinnedMesh plus GMaterial, extracted from the specified Collada Skin.
static List<GShape> InstanceControllerTranslator.instanceControllerToGShapeList(Collada collada, InstanceController icontrol, List<GSkinnedMesh> skinnedMeshes)
          gets the list of GShapes for the meshes and materials for a given InstanceController The GMeshes include skinning data, derived from the Skin of the Controller.
 

Uses of GShape in hmi.graphics.opengl.scenegraph
 

Methods in hmi.graphics.opengl.scenegraph with parameters of type GShape
static GLShape ScenegraphTranslator.fromGShapeToGLShape(GShape gshape, List<GLSkinnedMesh> glSkinnedMeshes)
          Translates a scenegraph GShape into an opengl GLShape
 

Uses of GShape in hmi.graphics.scenegraph
 

Fields in hmi.graphics.scenegraph with type parameters of type GShape
private static List<GShape> GNode.EMPTYGSHAPELIST
           
private  List<GShape> GNode.gshapes
           
 

Methods in hmi.graphics.scenegraph that return types with arguments of type GShape
 List<GShape> GNode.getGShapes()
          Returns a List with the GShape children of this GNode.
 

Methods in hmi.graphics.scenegraph with parameters of type GShape
 void GNode.addGShape(GShape gshape)
          Adds a GShape
 

Method parameters in hmi.graphics.scenegraph with type arguments of type GShape
 void GNode.addGShapes(List<GShape> gshapeList)
          Adds all elements of a List of GShapes