MCPcopy Create free account
hub / github.com/benfry/processing4 / min

Method min

core/src/processing/core/PImage.java:2323–2325  ·  view source on GitHub ↗
(int a, int b)

Source from the content-addressed store, hash-verified

2321
2322
2323 private static int min(int a, int b) {
2324 return (a < b) ? a : b;
2325 }
2326
2327
2328 private static int max(int a, int b) {

Callers 15

blitResizeMethod · 0.95
filter_new_scanlineMethod · 0.95
filter_bilinearMethod · 0.95
blend_blendMethod · 0.95
blend_add_pinMethod · 0.95
blend_sub_pinMethod · 0.95
blend_lightestMethod · 0.95
blend_darkestMethod · 0.95
blend_differenceMethod · 0.95
blend_exclusionMethod · 0.95
blend_multiplyMethod · 0.95
blend_screenMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected