Home
last modified time | relevance | path

Searched refs:stepPix (Results 1 – 2 of 2) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYStepCalculator.java54 float stepPix = 0; in getStep() local
59stepPix = (float)(stepValue/ ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(),… in getStep()
60 stepCount = plotPixelSize /stepPix; in getStep()
63 stepPix = new Double(stepValue).floatValue(); in getStep()
64 stepCount = plotPixelSize /stepPix; in getStep()
65 …Val = ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize)*stepPix; in getStep()
69 stepPix = (plotPixelSize /(stepCount-1)); in getStep()
70 …Val = ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize)*stepPix; in getStep()
73 return new XYStep(stepCount, stepPix, stepVal); in getStep()
DXYStep.java26 private final float stepPix; field in XYStep
31 public XYStep(float stepCount, float stepPix, double stepVal) { in XYStep() argument
33 this.stepPix = stepPix; in XYStep()
46 return stepPix; in getStepPix()