MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / max

Method max

src/com/cloudream/ishow/util/MathUtils.java:69–73  ·  view source on GitHub ↗
(float a, float b, float c)

Source from the content-addressed store, hash-verified

67 }
68
69 public static float max(float a, float b, float c)
70 {
71// return Math.max(Math.max(a, b), c); // take consider NAN condition
72 return a > b ? (a > c ? a : c) : (b > c ? b : c);
73 }
74
75 public static int max(int a, int b, int c)
76 {

Callers 5

overlayMethod · 0.80
overlay2Method · 0.80
decodeSampledBitmapMethod · 0.80
getRectFromPointsMethod · 0.80
getMaxTextureSizeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected