Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/processing/processing
/ max
Method
max
core/src/processing/core/PMatrix2D.java:515–517 ·
view source on GitHub ↗
(float a, float b)
Source
from the content-addressed store, hash-verified
513
514
515
static
private
final
float max(float a, float b) {
516
return
(a > b) ? a : b;
517
}
518
519
static
private
final
float abs(float a) {
520
return
(a < 0) ? -a : a;
Callers
1
print
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected