Home | History | Annotate | Download | only in filters

Lines Matching defs:cx

42             Bitmap bitmap, int w, int h, int cx, int cy, float radx, float rady, float strength);
44 private float calcRadius(float cx, float cy, int w, int h) {
45 float d = cx;
46 if (d < (w - cx)) {
47 d = w - cx;
79 float cx = w / 2;
81 float r = calcRadius(cx, cy, w, h);
86 cx = rep.getCenterX();
88 float[] center = new float[] { cx, cy };
90 cx = center[0];
95 nativeApplyFilter(bitmap, w, h, (int) cx, (int) cy, rx, ry, value);