Home
last modified time | relevance | path

Searched refs:targetLocation (Results 1 – 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
DConstraintDistLimit.java54 Vector3f targetLocation = ((Spatial) owner).getWorldTranslation(); in bakeConstraint() local
60 Vector3f v = translations[frame].subtract(targetLocation); in bakeConstraint()
61 this.distLimit(v, targetLocation, ipo.calculateValue(frame)); in bakeConstraint()
72 Vector3f targetLocation = targetWorldMatrix.toTranslationVector(); in bakeConstraint() local
77 this.distLimit(ownerLocation, targetLocation, ipo.calculateValue(0)); in bakeConstraint()
88 private void distLimit(Vector3f currentLocation, Vector3f targetLocation, float influence) { in distLimit() argument
89 Vector3f v = currentLocation.subtract(targetLocation); in distLimit()
97 currentLocation.set(v.addLocal(targetLocation)); in distLimit()
104 currentLocation.set(v.addLocal(targetLocation)); in distLimit()
107 currentLocation.set(targetLocation.add(v)); in distLimit()
[all …]
DConstraintLocLike.java90 private void locLike(Vector3f ownerLocation, Vector3f targetLocation, float influence) { in locLike() argument
98 ownerLocation.x = targetLocation.x; in locLike()
104 ownerLocation.y = targetLocation.y; in locLike()
110 ownerLocation.z = targetLocation.z; in locLike()
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
Dpixelzoomer.js141 var targetLocation = e.target.getBoundingClientRect();
142 pixelzoomer._percentX = (e.clientX - targetLocation.left) / targetLocation.width;
143 pixelzoomer._percentY = (e.clientY - targetLocation.top) / targetLocation.height;
/external/jmonkeyengine/engine/src/core/com/jme3/input/
DChaseCamera.java94 protected Vector3f targetLocation = new Vector3f(0, 0, 0); field in ChaseCamera
325 targetLocation.set(target.getWorldTranslation()).addLocal(lookAtOffset); in updateCamera()
329 targetDir.set(targetLocation).subtractLocal(prevPos); in updateCamera()
403 distance = temp.set(targetLocation).subtractLocal(cam.getLocation()).length(); in updateCamera()
454 prevPos.set(targetLocation); in updateCamera()
457 cam.lookAt(targetLocation, initialUpVec); in updateCamera()
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
DSimpleWaterProcessor.java110 protected Vector3f targetLocation = new Vector3f(); field in SimpleWaterProcessor
205 if (!ray.intersectsWherePlane(plane, targetLocation)) { in postQueue()
207 ray.intersectsWherePlane(plane, targetLocation); in postQueue()
224 reflectionCam.lookAt(targetLocation, vect3); in postQueue()
DWaterFilter.java76 private Vector3f targetLocation = new Vector3f(); field in WaterFilter
155 if (!ray.intersectsWherePlane(plane, targetLocation)) { in preFrame()
157 ray.intersectsWherePlane(plane, targetLocation); in preFrame()
176 reflectionCam.lookAt(targetLocation, vars.vect3); in preFrame()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DSourceFrame.js854 var targetLocation = WebInspector.ParsedURL.completeURL(this._sourceFrame._url, hrefValue);
855 …return WebInspector.linkifyURLAsNode(targetLocation || hrefValue, hrefValue, undefined, isExternal…