Uses of Interface
crystalspace.jbind.interfaces.iengine.mesh.iMeshFactoryWrapper

Packages that use iMeshFactoryWrapper
crystalspace.jbind.impl.engine.engine   
crystalspace.jbind.impl.engine.mesh   
crystalspace.jbind.impl.engine.region   
crystalspace.jbind.impl.map   
crystalspace.jbind.impl.map.ldrctxt   
crystalspace.jbind.interfaces.iengine.engine   
crystalspace.jbind.interfaces.iengine.mesh   
crystalspace.jbind.interfaces.iengine.region   
crystalspace.jbind.interfaces.imap   
crystalspace.jbind.interfaces.imap.ldrctxt   
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.impl.engine.engine
 

Methods in crystalspace.jbind.impl.engine.engine that return iMeshFactoryWrapper
 iMeshFactoryWrapper csEngine.createMeshFactory(iMeshObjectFactory factory, java.lang.String name)
           
 iMeshFactoryWrapper csEngine.createMeshFactory(java.lang.String classId, java.lang.String name)
           
 iMeshFactoryWrapper csEngine.createMeshFactory(java.lang.String name)
           
 iMeshFactoryWrapper csEngine.findMeshFactory(java.lang.String name, iRegion region)
           
 iMeshFactoryWrapper csEngine.findMeshFactory(java.lang.String name)
           
 iMeshFactoryWrapper csEngine.loadMeshFactory(java.lang.String name, java.lang.String loaderClassId, iDataBuffer input)
           
 

Methods in crystalspace.jbind.impl.engine.engine with parameters of type iMeshFactoryWrapper
 iMeshWrapper csEngine.createMeshWrapper(iMeshFactoryWrapper factory, java.lang.String name, iSector sector, csVector3 pos)
           
 iMeshWrapper csEngine.createMeshWrapper(iMeshFactoryWrapper factory, java.lang.String name, iSector sector)
           
 iMeshWrapper csEngine.createMeshWrapper(iMeshFactoryWrapper factory, java.lang.String name)
           
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.impl.engine.mesh
 

Classes in crystalspace.jbind.impl.engine.mesh that implement iMeshFactoryWrapper
 class csMeshFactoryWrapper
           
 

Methods in crystalspace.jbind.impl.engine.mesh that return iMeshFactoryWrapper
 iMeshFactoryWrapper csMeshWrapper.getFactory()
           
 iMeshFactoryWrapper csMeshFactoryList.get(int n)
           
 iMeshFactoryWrapper csMeshFactoryList.findByName(java.lang.String Name)
           
 iMeshFactoryWrapper csMeshFactoryWrapper.getParentContainer()
           
 

Methods in crystalspace.jbind.impl.engine.mesh with parameters of type iMeshFactoryWrapper
 void csMeshWrapper.setFactory(iMeshFactoryWrapper factory)
           
 int csMeshFactoryList.add(iMeshFactoryWrapper obj)
           
 boolean csMeshFactoryList.remove(iMeshFactoryWrapper obj)
           
 int csMeshFactoryList.find(iMeshFactoryWrapper obj)
           
 void csMeshFactoryWrapper.setParentContainer(iMeshFactoryWrapper p)
           
 void csMeshFactoryWrapper.addFactoryToStaticLOD(int lod, iMeshFactoryWrapper fact)
           
 void csMeshFactoryWrapper.removeFactoryFromStaticLOD(iMeshFactoryWrapper fact)
           
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.impl.engine.region
 

Methods in crystalspace.jbind.impl.engine.region that return iMeshFactoryWrapper
 iMeshFactoryWrapper csRegion.findMeshFactory(java.lang.String iName)
           
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.impl.map
 

Methods in crystalspace.jbind.impl.map that return iMeshFactoryWrapper
 iMeshFactoryWrapper csLoader.loadMeshObjectFactory(java.lang.String fname)
           
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.impl.map.ldrctxt
 

Methods in crystalspace.jbind.impl.map.ldrctxt that return iMeshFactoryWrapper
 iMeshFactoryWrapper csLoaderContext.findMeshFactory(java.lang.String name)
           
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.interfaces.iengine.engine
 

Methods in crystalspace.jbind.interfaces.iengine.engine that return iMeshFactoryWrapper
 iMeshFactoryWrapper iEngine.findMeshFactory(java.lang.String name)
          Find the given mesh factory.
 iMeshFactoryWrapper iEngine.findMeshFactory(java.lang.String name, iRegion region)
          Find the given mesh factory.
 iMeshFactoryWrapper iEngine.createMeshFactory(java.lang.String classId, java.lang.String name)
          Convenience function to create a mesh factory from a given type.
 iMeshFactoryWrapper iEngine.createMeshFactory(iMeshObjectFactory factory, java.lang.String name)
          Create a mesh factory wrapper for an existing mesh factory
 iMeshFactoryWrapper iEngine.createMeshFactory(java.lang.String name)
          Create an uninitialized mesh factory wrapper.
 iMeshFactoryWrapper iEngine.loadMeshFactory(java.lang.String name, java.lang.String loaderClassId, iDataBuffer input)
          Convenience function to load a mesh factory from a given loader plugin.
 

Methods in crystalspace.jbind.interfaces.iengine.engine with parameters of type iMeshFactoryWrapper
 iMeshWrapper iEngine.createMeshWrapper(iMeshFactoryWrapper factory, java.lang.String name)
          Convenience function to create a mesh object for a given factory.
 iMeshWrapper iEngine.createMeshWrapper(iMeshFactoryWrapper factory, java.lang.String name, iSector sector)
          Convenience function to create a mesh object for a given factory.
 iMeshWrapper iEngine.createMeshWrapper(iMeshFactoryWrapper factory, java.lang.String name, iSector sector, csVector3 pos)
          Convenience function to create a mesh object for a given factory.
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.interfaces.iengine.mesh
 

Methods in crystalspace.jbind.interfaces.iengine.mesh that return iMeshFactoryWrapper
 iMeshFactoryWrapper iMeshWrapper.getFactory()
          Get the parent factory.
 iMeshFactoryWrapper iMeshFactoryList.get(int n)
          Return a mesh factory wrapper by index.
 iMeshFactoryWrapper iMeshFactoryList.findByName(java.lang.String Name)
          Find a mesh factory wrapper by name.
 iMeshFactoryWrapper iMeshFactoryWrapper.getParentContainer()
          Get the parent of this factory.
 

Methods in crystalspace.jbind.interfaces.iengine.mesh with parameters of type iMeshFactoryWrapper
 void iMeshWrapper.setFactory(iMeshFactoryWrapper factory)
          Set the parent factory (this only sets a pointer).
 int iMeshFactoryList.add(iMeshFactoryWrapper obj)
          Add a mesh factory wrapper.
 boolean iMeshFactoryList.remove(iMeshFactoryWrapper obj)
          Remove a mesh factory wrapper.
 int iMeshFactoryList.find(iMeshFactoryWrapper obj)
          Find a mesh factory wrapper and return its index.
 void iMeshFactoryWrapper.setParentContainer(iMeshFactoryWrapper p)
          Set the parent of this factory.
 void iMeshFactoryWrapper.addFactoryToStaticLOD(int lod, iMeshFactoryWrapper fact)
          Set a given child factory at a specific lod level.
 void iMeshFactoryWrapper.removeFactoryFromStaticLOD(iMeshFactoryWrapper fact)
          Remove a child factory from all lod levels.
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.interfaces.iengine.region
 

Methods in crystalspace.jbind.interfaces.iengine.region that return iMeshFactoryWrapper
 iMeshFactoryWrapper iRegion.findMeshFactory(java.lang.String iName)
          Find a mesh factory in this region by name.
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.interfaces.imap
 

Methods in crystalspace.jbind.interfaces.imap that return iMeshFactoryWrapper
 iMeshFactoryWrapper iLoader.loadMeshObjectFactory(java.lang.String fname)
          Load a Mesh Object Factory from the map file.
 

Uses of iMeshFactoryWrapper in crystalspace.jbind.interfaces.imap.ldrctxt
 

Methods in crystalspace.jbind.interfaces.imap.ldrctxt that return iMeshFactoryWrapper
 iMeshFactoryWrapper iLoaderContext.findMeshFactory(java.lang.String name)
          Find a mesh factory.