From 74b59234db6e6f8292829caf66823717ec0b5fae Mon Sep 17 00:00:00 2001 From: badlogic Date: Sat, 4 May 2013 21:03:57 +0200 Subject: [PATCH] 'fixed' issue 1337 by adding javadoc :/ --- gdx/src/com/badlogic/gdx/graphics/OrthographicCamera.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdx/src/com/badlogic/gdx/graphics/OrthographicCamera.java b/gdx/src/com/badlogic/gdx/graphics/OrthographicCamera.java index 682b753a1..e01a88ce7 100644 --- a/gdx/src/com/badlogic/gdx/graphics/OrthographicCamera.java +++ b/gdx/src/com/badlogic/gdx/graphics/OrthographicCamera.java @@ -33,7 +33,7 @@ public class OrthographicCamera extends Camera { } /** Constructs a new OrthographicCamera, using the given viewport width and height. For pixel perfect 2D rendering just supply - * the screen size, for other unit scales (e.g. meters for box2d) proceed accordingly. + * the screen size, for other unit scales (e.g. meters for box2d) proceed accordingly. The camera will show the region [-viewportWidth/2, -viewportHeight / 2]- [viewportWidth/2, viewportHeight/2] * * @param viewportWidth the viewport width * @param viewportHeight the viewport height */ @@ -45,7 +45,7 @@ public class OrthographicCamera extends Camera { } /** Constructs a new OrthographicCamera, using the given viewport width and height. This will create a camera useable for - * iso-metric views. The diamond angle is specifies the angle of a tile viewed isometrically. + * iso-metric views. The diamond angle is specifies the angle of a tile viewed isometrically. * * @param viewportWidth the viewport width * @param viewportHeight the viewport height -- 2.11.0