Searched refs:scaledBounds (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DNinePatchDrawable.java229 final Rect scaledBounds = mTempRect;
230 scaledBounds.left = bounds.left;
231 scaledBounds.top = bounds.top;
232 scaledBounds.right = bounds.left + Math.round(bounds.width() / scale);
233 scaledBounds.bottom = bounds.top + Math.round(bounds.height() / scale);
234 bounds = scaledBounds;
/frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
H A DOctopusDrawable.java57 private float[] scaledBounds = new float[2]; field in class:OctopusDrawable
122 if (point.y - BASE_SCALE/2 > scaledBounds[1]) {
128 point.x = clamp(point.x + dt_sec * vx, 0, scaledBounds[0]);
151 scaledBounds[0] = w;
152 scaledBounds[1] = h;
153 M_inv.mapPoints(scaledBounds);

Completed in 775 milliseconds