OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisY
(Results
1 - 4
of
4
) sorted by null
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/effects/
OutlineWobbleEffect.java
75
float thisX = 0,
thisY
= 0;
95
thisY
= randomize(points[1]);
97
float dy =
thisY
- lastY;
110
lastY =
thisY
;
OutlineZigzagEffect.java
74
float thisX = 0,
thisY
= 0;
95
thisY
= points[1];
97
float dy =
thisY
- lastY;
114
lastY =
thisY
;
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
BarPlotExampleActivity.java
327
Number
thisY
= series.getY(i);
328
if (thisX != null &&
thisY
!= null) {
332
LineRegion.measure(y,
thisY
).doubleValue();
343
thisY
.doubleValue() >= y.doubleValue()) {
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYPlot.java
346
Number
thisY
= series.getY(i);
347
if (isPointVisible(thisX,
thisY
)) {
364
if (
thisY
!= null && (calculatedMinY == null ||
365
thisY
.doubleValue() < calculatedMinY.doubleValue())) {
366
calculatedMinY =
thisY
;
371
if (
thisY
!= null && (calculatedMaxY == null ||
thisY
.doubleValue() > calculatedMaxY.doubleValue())) {
372
calculatedMaxY =
thisY
;
[
all
...]
Completed in 915 milliseconds