Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
DSignalDrawable.java293 float dotSize = (DOT_SIZE * height); in draw() local
301 float dotSpacing = dotPadding * 2 + dotSize; in draw()
302 float x = width - padding - dotSize; in draw()
303 float y = height - padding - dotSize; in draw()
305 drawDot(mFullPath, mForegroundPath, x, y, dotSize, 2); in draw()
306 drawDot(mFullPath, mForegroundPath, x - dotSpacing, y, dotSize, 1); in draw()
307 drawDot(mFullPath, mForegroundPath, x - dotSpacing * 2, y, dotSize, 0); in draw()
367 private void drawDot(Path fullPath, Path foregroundPath, float x, float y, float dotSize, in drawDot() argument
370 p.addRect(x, y, x + dotSize, y + dotSize, Direction.CW); in drawDot()