OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:yDelta
(Results
1 - 7
of
7
) sorted by null
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
LwjglMouseInput.java
98
int
yDelta
= Mouse.getEventDY();
105
yDelta
= y - curY;
110
y = curY +
yDelta
;
115
if (xDelta != 0 ||
yDelta
!= 0 || wheelDelta != 0){
116
MouseMotionEvent evt = new MouseMotionEvent(x, y, xDelta,
yDelta
, curWheel, wheelDelta);
/external/replicaisland/src/com/replica/replicaisland/
CameraSystem.java
141
final float
yDelta
= targetPosition.y - mCurrentCameraPosition.y;
142
if (
yDelta
> Y_UP_FOLLOW_DISTANCE) {
144
} else if (
yDelta
< -Y_DOWN_FOLLOW_DISTANCE) {
/packages/apps/Gallery/src/com/android/camera/
HighlightView.java
261
float
yDelta
= dy * (mCropRect.height() / r.height());
263
(((edge & GROW_TOP_EDGE) != 0) ? -1 : 1) *
yDelta
);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.cpp
511
int
yDelta
= lastKnownMousePosition.y() - panStartMousePosition.y();
514
yDelta
= max<int>(min<int>(
yDelta
, maxSpeed), -maxSpeed);
516
if (abs(
yDelta
) < iconRadius) // at the center we let the space for the icon
519
if (
yDelta
> 0)
522
else if (
yDelta
< 0)
523
yDelta
--;
526
yDelta
/= speedReducer;
529
scrollPoint.setY(absOffset.y() +
yDelta
);
/prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar
/prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar
/prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar
Completed in 919 milliseconds