MCPcopy Index your code
hub / github.com/processing/processing / min

Method min

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

Source from the content-addressed store, hash-verified

4627
4628
4629 static public final int min(int a, int b) {
4630 return (a < b) ? a : b;
4631 }
4632
4633 static public final float min(float a, float b) {
4634 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