OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:reflectionCam
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
ReflectionProcessor.java
23
private Camera
reflectionCam
;
29
* @param
reflectionCam
the cam to use for reflection
33
public ReflectionProcessor(Camera
reflectionCam
, FrameBuffer reflectionBuffer, Plane reflectionClipPlane) {
34
this.
reflectionCam
=
reflectionCam
;
57
reflectionCam
.setProjectionMatrix(null);
58
rm.setCamera(
reflectionCam
, false);
62
vp.getQueue().renderQueue(RenderQueue.Bucket.Sky, rm,
reflectionCam
, true);
65
reflectionCam
.setClipPlane(reflectionClipPlane, Plane.Side.Positive);//,1
66
rm.setCamera(
reflectionCam
, false)
[
all
...]
SimpleWaterProcessor.java
98
protected Camera
reflectionCam
;
211
reflectionCam
.setLocation(loc);
212
reflectionCam
.setFrustum(sceneCam.getFrustumNear(),
224
reflectionCam
.lookAt(targetLocation, vect3);
226
reflectionCam
.setAxes(
reflectionCam
.getLeft().negateLocal(),
reflectionCam
.getUp(),
reflectionCam
.getDirection().negateLocal());
285
reflectionCam
= new Camera(renderWidth, renderHeight);
289
reflectionView = new ViewPort("Reflection View",
reflectionCam
);
[
all
...]
WaterFilter.java
74
private Camera
reflectionCam
;
161
reflectionCam
.setLocation(loc);
162
reflectionCam
.setFrustum(sceneCam.getFrustumNear(),
176
reflectionCam
.lookAt(targetLocation, vars.vect3);
180
reflectionCam
.setAxes(
reflectionCam
.getLeft().negateLocal(),
reflectionCam
.getUp(),
reflectionCam
.getDirection().negateLocal());
240
reflectionCam
= new Camera(reflectionMapSize, reflectionMapSize);
241
reflectionView = new ViewPort("reflectionView",
reflectionCam
);
[
all
...]
Completed in 356 milliseconds