Uses of Interface
crystalspace.jbind.interfaces.iengine.movable.iMovable

Packages that use iMovable
crystalspace.jbind.impl.engine.mesh   
crystalspace.jbind.impl.engine.movable   
crystalspace.jbind.impl.engine.objwatch   
crystalspace.jbind.impl.engine.portal   
crystalspace.jbind.impl.engine.shadcast   
crystalspace.jbind.impl.engine.viscul   
crystalspace.jbind.impl.mesh.object   
crystalspace.jbind.interfaces.iengine.mesh   
crystalspace.jbind.interfaces.iengine.movable   
crystalspace.jbind.interfaces.iengine.objwatch   
crystalspace.jbind.interfaces.iengine.portal   
crystalspace.jbind.interfaces.iengine.shadcast   
crystalspace.jbind.interfaces.iengine.viscul   
crystalspace.jbind.interfaces.imesh.object   
 

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

Methods in crystalspace.jbind.impl.engine.mesh that return iMovable
 iMovable csMeshWrapper.getMovable()
           
 

Uses of iMovable in crystalspace.jbind.impl.engine.movable
 

Classes in crystalspace.jbind.impl.engine.movable that implement iMovable
 class csMovable
           
 

Methods in crystalspace.jbind.impl.engine.movable that return iMovable
 iMovable csMovable.getParent()
           
 

Methods in crystalspace.jbind.impl.engine.movable with parameters of type iMovable
 void csMovable.setParent(iMovable parent)
           
 void csMovableListener.movableChanged(iMovable movable)
           
 void csMovableListener.movableDestroyed(iMovable movable)
           
 

Uses of iMovable in crystalspace.jbind.impl.engine.objwatch
 

Methods in crystalspace.jbind.impl.engine.objwatch that return iMovable
 iMovable csObjectWatcher.getLastMovable()
           
 iMovable csObjectWatcher.getMovable(int idx)
           
 

Methods in crystalspace.jbind.impl.engine.objwatch with parameters of type iMovable
 void csObjectWatcher.removeMovable(iMovable movable)
           
 void csObjectWatcher.watchMovable(iMovable movable)
           
 void csObjectWatcherListener.objectChanged(int op, iMovable movable, iLight light)
           
 

Uses of iMovable in crystalspace.jbind.impl.engine.portal
 

Methods in crystalspace.jbind.impl.engine.portal with parameters of type iMovable
 csPlane3 csPortal.getWorldPlane(iMovable movable)
           
 boolean csPortal.pointOnPolygon(csVector3 point, iMovable movable)
           
 

Uses of iMovable in crystalspace.jbind.impl.engine.shadcast
 

Methods in crystalspace.jbind.impl.engine.shadcast with parameters of type iMovable
 void csShadowReceiver.castShadows(iMovable movable, iFrustumView fview)
           
 

Uses of iMovable in crystalspace.jbind.impl.engine.viscul
 

Methods in crystalspace.jbind.impl.engine.viscul that return iMovable
 iMovable csVisibilityObject.getMovable()
           
 

Uses of iMovable in crystalspace.jbind.impl.mesh.object
 

Methods in crystalspace.jbind.impl.mesh.object with parameters of type iMovable
 boolean csMeshObject.draw(iRenderView rview, iMovable movable, int zbufMode)
           
 boolean csMeshObject.drawTest(iRenderView rview, iMovable movable)
           
 void csMeshObject.updateLighting(iLight[] lights, iMovable movable)
           
 

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

Methods in crystalspace.jbind.interfaces.iengine.mesh that return iMovable
 iMovable iMeshWrapper.getMovable()
          Get the movable instance for this object.
 

Uses of iMovable in crystalspace.jbind.interfaces.iengine.movable
 

Methods in crystalspace.jbind.interfaces.iengine.movable that return iMovable
 iMovable iMovable.getParent()
          Get the parent movable.
 

Methods in crystalspace.jbind.interfaces.iengine.movable with parameters of type iMovable
 void iMovable.setParent(iMovable parent)
          Set the parent movable.
 void iMovableListener.movableChanged(iMovable movable)
          The movable has changed.
 void iMovableListener.movableDestroyed(iMovable movable)
          The movable is about to be destroyed.
 

Uses of iMovable in crystalspace.jbind.interfaces.iengine.objwatch
 

Methods in crystalspace.jbind.interfaces.iengine.objwatch that return iMovable
 iMovable iObjectWatcher.getLastMovable()
          Get the last movable.Only valid if the last operation(GetLastOperation()) is one of CS_WATCH_MOVABLE_.
 iMovable iObjectWatcher.getMovable(int idx)
          Get the specified watched movable.Implemented in csObjectWatcher
 

Methods in crystalspace.jbind.interfaces.iengine.objwatch with parameters of type iMovable
 void iObjectWatcher.removeMovable(iMovable movable)
          Remove a movable to watch.Implemented in csObjectWatcher
 void iObjectWatcher.watchMovable(iMovable movable)
          Add a movable to watch.Implemented in csObjectWatcher
 void iObjectWatcherListener.objectChanged(int op, iMovable movable, iLight light)
          A change has occured.
 

Uses of iMovable in crystalspace.jbind.interfaces.iengine.portal
 

Methods in crystalspace.jbind.interfaces.iengine.portal with parameters of type iMovable
 csPlane3 iPortal.getWorldPlane(iMovable movable)
          Get the world space plane of this portal.
 boolean iPortal.pointOnPolygon(csVector3 point, iMovable movable)
          Test if a point is on the polygon represented by this portal.
 

Uses of iMovable in crystalspace.jbind.interfaces.iengine.shadcast
 

Methods in crystalspace.jbind.interfaces.iengine.shadcast with parameters of type iMovable
 void iShadowReceiver.castShadows(iMovable movable, iFrustumView fview)
          Cast shadows on this receiver.
 

Uses of iMovable in crystalspace.jbind.interfaces.iengine.viscul
 

Methods in crystalspace.jbind.interfaces.iengine.viscul that return iMovable
 iMovable iVisibilityObject.getMovable()
          Get the reference to the movable from this object.
 

Uses of iMovable in crystalspace.jbind.interfaces.imesh.object
 

Methods in crystalspace.jbind.interfaces.imesh.object with parameters of type iMovable
 boolean iMeshObject.draw(iRenderView rview, iMovable movable, int zbufMode)
          Draw this mesh object.
 boolean iMeshObject.drawTest(iRenderView rview, iMovable movable)
          First part of Draw.
 void iMeshObject.updateLighting(iLight[] lights, iMovable movable)
          Update lighting for the object on the given position.