Searched defs:camCell (Results 1 - 1 of 1) sorted by relevance

/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGrid.java276 Vector3f camCell = this.getCamCell(location);
277 this.updateChildren(camCell);
279 l.gridMoved(camCell);
290 Vector3f camCell = this.getCamCell(cam); // get the grid index value of where the camera is (ie. 2,1)
292 gridOffset[0] = Math.round(camCell.x * (size / 2));
293 gridOffset[1] = Math.round(camCell.z * (size / 2));
296 if (camCell.x != this.currentCamCell.x || camCell.z != currentCamCell.z || !runOnce) {
298 this.updateChildren(camCell);
300 l.gridMoved(camCell);
368 updateChildrens(Vector3f camCell) argument
384 updateChildren(Vector3f camCell) argument
[all...]

Completed in 57 milliseconds