MCPcopy Index your code
hub / github.com/processing/processing / min

Method min

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

Source from the content-addressed store, hash-verified

2468
2469
2470 private static int min(int a, int b) {
2471 return (a < b) ? a : b;
2472 }
2473
2474
2475 private static int max(int a, int b) {

Callers 15

blit_resizeMethod · 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