Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
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