Uses of Class
simogl.geometry.AbstractMesh

Packages that use AbstractMesh
simogl.collision   
simogl.geometry   
simogl.level   
simogl.model.animation   
 

Uses of AbstractMesh in simogl.collision
 

Methods in simogl.collision with parameters of type AbstractMesh
 boolean CollisionFinder.collided(AbstractMesh mesh1, AbstractMesh mesh2)
          This method checks, if a collision between the two specified meshes has occured.
 java.util.ArrayList<Triangle> CollisionFinder.collided(AbstractMesh mesh, Terrain terrain)
          This method checks, if a collision between the bottom center point of the mesh and the terrain has occured and returns the triangle(s) that has/have collided with the mesh.
 boolean CollisionFinder.collided(Point3D point, AbstractMesh mesh)
          This method checks for collision between the specified point and the mesh
 

Constructors in simogl.collision with parameters of type AbstractMesh
BoundingBox(AbstractMesh mesh)
          Creates a bounding box for the meshes current triangle coordinates
 

Uses of AbstractMesh in simogl.geometry
 

Subclasses of AbstractMesh in simogl.geometry
 class MeshDL
          This class represents a mesh.
 class MeshVA
          This class represents a mesh.
 

Uses of AbstractMesh in simogl.level
 

Subclasses of AbstractMesh in simogl.level
 class SkyBox
          This class represents the skybox of the scene
 class Terrain
          This class represents a world's terrain, that is generated from a height map file.
 

Fields in simogl.level with type parameters of type AbstractMesh
static java.util.ArrayList<AbstractMesh> AbstractLevel.worldItemsSolid
           
static java.util.ArrayList<AbstractMesh> AbstractLevel.worldItemsTransparent
           
 

Uses of AbstractMesh in simogl.model.animation
 

Methods in simogl.model.animation that return AbstractMesh
 AbstractMesh AnimationFrame.getMesh()
          Return the mesh that is the a frame of an animation
 

Methods in simogl.model.animation with parameters of type AbstractMesh
 void Animation.addAnimFrame(AbstractMesh frame, long duration)
          Adds a frame to the animation
 

Constructors in simogl.model.animation with parameters of type AbstractMesh
AnimationFrame(AbstractMesh mesh, long endTime)