CameraKit / blurkit-android

The missing Android blurring library. Fast blur-behind layout that parallels iOS.
MIT License
3.72k stars 309 forks source link

Feel puzzled at the function 'BlurLayout#getPositionInScreen' #16

Closed hyvenzhu closed 7 years ago

hyvenzhu commented 7 years ago

Is that similar to the code below?

private PointF getPositionInScreen(View view) { PointF point = new PointF(); point.offset(view.getX(), view.getY()); return point; }

I feel puzzled at it, could you tell me the reason?