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

Method min

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

Source from the content-addressed store, hash-verified

78 }
79
80 public static float min(float a, float b, float c)
81 {
82// return Math.min(Math.min(a, b), c); // take consider NAN condition
83 return a < b ? (a < c ? a : c) : (b < c ? b : c);
84 }
85
86 public static int min(int a, int b, int c)
87 {

Callers 5

calculateRegionInfoMethod · 0.80
overlayMethod · 0.80
overlay2Method · 0.80
GalleryAdapterMethod · 0.80
getRectFromPointsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected