am c7aa8fe6
: Merge "Removing some more FloatMath references"
* commit 'c7aa8fe62356fc09962941140c8bb7ed8bab2f8f': Removing some more FloatMath references
This commit is contained in:
@ -69,7 +69,7 @@ public class GestureStroke {
|
|||||||
bx.bottom = p.y;
|
bx.bottom = p.y;
|
||||||
len = 0;
|
len = 0;
|
||||||
} else {
|
} else {
|
||||||
len += Math.hypot(p.x - tmpPoints[(i - 1) * 2], p.y - tmpPoints[(i -1 ) * 2 + 1]);
|
len += Math.hypot(p.x - tmpPoints[(i - 1) * 2], p.y - tmpPoints[(i -1) * 2 + 1]);
|
||||||
bx.union(p.x, p.y);
|
bx.union(p.x, p.y);
|
||||||
}
|
}
|
||||||
index++;
|
index++;
|
||||||
|
@ -23,7 +23,6 @@ import android.graphics.Canvas;
|
|||||||
import android.graphics.Matrix;
|
import android.graphics.Matrix;
|
||||||
import android.graphics.Paint;
|
import android.graphics.Paint;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.util.FloatMath;
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
@ -72,7 +71,7 @@ public class BitmapUtils {
|
|||||||
&& minSideLength == UNCONSTRAINED) return 1;
|
&& minSideLength == UNCONSTRAINED) return 1;
|
||||||
|
|
||||||
int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
|
int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
|
||||||
(int) FloatMath.ceil(FloatMath.sqrt((float) (w * h) / maxNumOfPixels));
|
(int) Math.ceil(Math.sqrt((double) (w * h) / maxNumOfPixels));
|
||||||
|
|
||||||
if (minSideLength == UNCONSTRAINED) {
|
if (minSideLength == UNCONSTRAINED) {
|
||||||
return lowerBound;
|
return lowerBound;
|
||||||
@ -96,7 +95,7 @@ public class BitmapUtils {
|
|||||||
|
|
||||||
// Find the min x that 1 / x >= scale
|
// Find the min x that 1 / x >= scale
|
||||||
public static int computeSampleSizeLarger(float scale) {
|
public static int computeSampleSizeLarger(float scale) {
|
||||||
int initialSize = (int) FloatMath.floor(1f / scale);
|
int initialSize = (int) Math.floor(1 / scale);
|
||||||
if (initialSize <= 1) return 1;
|
if (initialSize <= 1) return 1;
|
||||||
|
|
||||||
return initialSize <= 8
|
return initialSize <= 8
|
||||||
@ -107,7 +106,7 @@ public class BitmapUtils {
|
|||||||
// Find the max x that 1 / x <= scale.
|
// Find the max x that 1 / x <= scale.
|
||||||
public static int computeSampleSize(float scale) {
|
public static int computeSampleSize(float scale) {
|
||||||
Utils.assertTrue(scale > 0);
|
Utils.assertTrue(scale > 0);
|
||||||
int initialSize = Math.max(1, (int) FloatMath.ceil(1 / scale));
|
int initialSize = Math.max(1, (int) Math.ceil(1 / scale));
|
||||||
return initialSize <= 8
|
return initialSize <= 8
|
||||||
? Utils.nextPowerOf2(initialSize)
|
? Utils.nextPowerOf2(initialSize)
|
||||||
: (initialSize + 7) / 8 * 8;
|
: (initialSize + 7) / 8 * 8;
|
||||||
|
Reference in New Issue
Block a user