Uses of Class
org.osm2world.core.target.common.rendering.Projection

Packages that use Projection
org.osm2world.console command line interface for OSM2World. 
org.osm2world.core.target.common.rendering   
org.osm2world.core.target.jogl   
org.osm2world.core.target.obj target that creates Wavefront .obj and .mtl files 
org.osm2world.core.target.povray target that creates .pov files for the POVRay raytracer 
org.osm2world.viewer.model   
org.osm2world.viewer.view.debug   
 

Uses of Projection in org.osm2world.console
 

Methods in org.osm2world.console with parameters of type Projection
 void ImageExporter.writeImageFile(File outputFile, CLIArgumentsUtil.OutputMode outputMode, int x, int y, Camera camera, Projection projection)
          renders this ImageExporter's content to a file
 

Uses of Projection in org.osm2world.core.target.common.rendering
 

Methods in org.osm2world.core.target.common.rendering that return Projection
static Projection OrthoTilesUtil.projectionForBounds(AxisAlignedBoundingBoxXZ bounds, double angleDeg, OrthoTilesUtil.CardinalDirection from)
           
static Projection OrthoTilesUtil.projectionForTile(MapProjection mapProjection, TileNumber tile, double angleDeg, OrthoTilesUtil.CardinalDirection from)
           
static Projection OrthoTilesUtil.projectionForTiles(MapProjection mapProjection, List<TileNumber> tiles, double angleDeg, OrthoTilesUtil.CardinalDirection from)
           
 Projection Projection.withAspectRatio(double newAspectRatio)
           
 Projection Projection.withVolumeHeight(double newVolumeHeight)
           
 

Uses of Projection in org.osm2world.core.target.jogl
 

Methods in org.osm2world.core.target.jogl with parameters of type Projection
 void JOGLTarget.render(Camera camera, Projection projection)
           
 void JOGLRendererVBO.render(Camera camera, Projection projection)
           
 void JOGLTarget.renderPart(Camera camera, Projection projection, double xStart, double xEnd, double yStart, double yEnd)
          similar to JOGLTarget.render(Camera, Projection), but allows rendering only a part of the "normal" image.
 

Uses of Projection in org.osm2world.core.target.obj
 

Methods in org.osm2world.core.target.obj with parameters of type Projection
static void ObjWriter.writeObjFile(File objFile, MapData mapData, CellularTerrainElevation eleData, Terrain terrain, MapProjection mapProjection, Camera camera, Projection projection)
           
static void ObjWriter.writeObjFiles(File objDirectory, MapData mapData, CellularTerrainElevation eleData, Terrain terrain, MapProjection mapProjection, Camera camera, Projection projection, int primitiveThresholdPerFile)
           
 

Uses of Projection in org.osm2world.core.target.povray
 

Methods in org.osm2world.core.target.povray with parameters of type Projection
static void POVRayWriter.writePOVInstructionFile(File file, MapData mapData, CellularTerrainElevation eleData, Terrain terrain, Camera camera, Projection projection)
           
 

Uses of Projection in org.osm2world.viewer.model
 

Fields in org.osm2world.viewer.model declared as Projection
static Projection Defaults.ORTHOGRAPHIC_PROJECTION
           
static Projection Defaults.PERSPECTIVE_PROJECTION
           
 Projection RenderOptions.projection
           
 

Uses of Projection in org.osm2world.viewer.view.debug
 

Fields in org.osm2world.viewer.view.debug declared as Projection
protected  Projection DebugView.projection
           
 

Methods in org.osm2world.viewer.view.debug with parameters of type Projection
 void HelpView.renderTo(GL2 gl, Camera camera, Projection projection)
           
 void DebugView.renderTo(GL2 gl, Camera camera, Projection projection)
          renders the content added by DebugView.fillTarget(JOGLTarget).