From 8937e93cce4692bd398af270d60c0bc84d5b0ad2 Mon Sep 17 00:00:00 2001 From: Ali-RS Date: Thu, 15 Sep 2016 09:41:04 +0430 Subject: [PATCH] Minor fix in javadoc for Camera.java class --- jme3-core/src/main/java/com/jme3/renderer/Camera.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-core/src/main/java/com/jme3/renderer/Camera.java b/jme3-core/src/main/java/com/jme3/renderer/Camera.java index 2d4a61a45..a51ae0687 100644 --- a/jme3-core/src/main/java/com/jme3/renderer/Camera.java +++ b/jme3-core/src/main/java/com/jme3/renderer/Camera.java @@ -991,7 +991,7 @@ public class Camera implements Savable, Cloneable { * Returns the pseudo distance from the given position to the near * plane of the camera. This is used for render queue sorting. * @param pos The position to compute a distance to. - * @return Distance from the far plane to the point. + * @return Distance from the near plane to the point. */ public float distanceToNearPlane(Vector3f pos) { return worldPlane[NEAR_PLANE].pseudoDistance(pos);