From 88dee186290f6ba41d78dce3997150a7a4bc8dc7 Mon Sep 17 00:00:00 2001 From: "skye.book" Date: Wed, 19 Oct 2011 19:50:07 +0000 Subject: [PATCH] Created clickable links out of http mentions in Camera Javadoc git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@8464 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/core/com/jme3/renderer/Camera.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/engine/src/core/com/jme3/renderer/Camera.java b/engine/src/core/com/jme3/renderer/Camera.java index fc98d6f94..728c32745 100644 --- a/engine/src/core/com/jme3/renderer/Camera.java +++ b/engine/src/core/com/jme3/renderer/Camera.java @@ -56,7 +56,7 @@ import java.util.logging.Logger; * *

* Given input data such as location, orientation (direction, left, up), - * and viewport settings, it can compute data neccessary to render objects + * and viewport settings, it can compute data necessary to render objects * with the graphics library. Two matrices are generated, the view matrix * transforms objects from world space into eye space, while the projection * matrix transforms objects from eye space into clip space. @@ -430,9 +430,12 @@ public class Camera implements Savable, Cloneable { * The cliPlane is used to recompute the projectionMatrix using the plane as the near plane * This technique is known as the oblique near-plane clipping method introduced by Eric Lengyel * more info here - * http://www.terathon.com/code/oblique.html - * http://aras-p.info/texts/obliqueortho.html - * http://hacksoflife.blogspot.com/2008/12/every-now-and-then-i-come-across.html + *

* * Note that this will work properly only if it's called on each update, and be aware that it won't work properly with the sky bucket. * if you want to handle the sky bucket, look at how it's done in SimpleWaterProcessor.java -- 2.11.0