MCPcopy Index your code
hub / github.com/benfry/processing4 / min

Method min

core/src/processing/core/PApplet.java:4206–4208  ·  view source on GitHub ↗
(int a, int b)

Source from the content-addressed store, hash-verified

4204
4205
4206 static public final int min(int a, int b) {
4207 return (a < b) ? a : b;
4208 }
4209
4210 static public final float min(float a, float b) {
4211 return (a < b) ? a : b;

Callers 15

saveImplMethod · 0.95
rawPointsMethod · 0.95
drawPixelsMethod · 0.95
getVertexMinMethod · 0.95
addEllipseMethod · 0.95
addArcMethod · 0.95
getPolyVertexMinMethod · 0.95
getLineVertexMinMethod · 0.95
getPointVertexMinMethod · 0.95
tessellateRoundPointsMethod · 0.95
addLineSegment2DMethod · 0.95
splitRawIndicesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected