Code
Hub
Trending
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
saveImpl
Method · 0.95
rawPoints
Method · 0.95
drawPixels
Method · 0.95
getVertexMin
Method · 0.95
addEllipse
Method · 0.95
addArc
Method · 0.95
getPolyVertexMin
Method · 0.95
getLineVertexMin
Method · 0.95
getPointVertexMin
Method · 0.95
tessellateRoundPoints
Method · 0.95
addLineSegment2D
Method · 0.95
splitRawIndices
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected