MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / applyWhirlPinch

Method applyWhirlPinch

src/com/cloudream/ishow/algorithm/Effect.java:49–55  ·  view source on GitHub ↗
(Bitmap image, Point pivot, float whirl, float pinch, float radius)

Source from the content-addressed store, hash-verified

47 };
48
49 public static void applyWhirlPinch(Bitmap image, Point pivot, float whirl, float pinch, float radius)
50 {
51 if(image == null || image.getConfig() != Bitmap.Config.ARGB_8888)
52 throw new IllegalArgumentException("bad image"); // 0xBAD13A9E
53
54 nativeApplyWhirlPinch(image, pivot, whirl, pinch, radius);
55 }
56
57 public static void applyWhirlPinch(Bitmap image, float whirl, float pinch, float radius)
58 {

Callers

nothing calls this directly

Calls 2

nativeApplyWhirlPinchMethod · 0.95

Tested by

no test coverage detected