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/PMatrix3D.java:862–864 ·
view source on GitHub ↗
(float a, float b)
Source
from the content-addressed store, hash-verified
860
861
862
static
private
final
float max(float a, float b) {
863
return
(a > b) ? a : b;
864
}
865
866
static
private
final
float abs(float a) {
867
return
(a < 0) ? -a : a;
Callers
1
print
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected