OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisX
(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;
94
thisX
= randomize(points[0]);
96
float dx =
thisX
- lastX;
109
lastX =
thisX
;
OutlineZigzagEffect.java
74
float
thisX
= 0, thisY = 0;
94
thisX
= points[0];
96
float dx =
thisX
- lastX;
113
lastX =
thisX
;
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYPlot.java
345
Number
thisX
= series.getX(i);
347
if (isPointVisible(
thisX
, thisY)) {
350
if (
thisX
!= null && (calculatedMinX == null ||
351
thisX
.doubleValue() < calculatedMinX.doubleValue())) {
352
calculatedMinX =
thisX
;
357
if (
thisX
!= null && (calculatedMaxX == null ||
358
thisX
.doubleValue() > calculatedMaxX.doubleValue())) {
359
calculatedMaxX =
thisX
;
[
all
...]
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
BarPlotExampleActivity.java
326
Number
thisX
= series.getX(i);
328
if (
thisX
!= null && thisY != null) {
330
LineRegion.measure(x,
thisX
).doubleValue();
Completed in 1584 milliseconds