Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07e77673 authored by Andrew Solovay's avatar Andrew Solovay Committed by android-build-merger
Browse files

Merge "Corrected code snippet for reveal effect" into mnc-docs

am: b203ea3f

* commit 'b203ea3f':
  Corrected code snippet for reveal effect
parents bc9350fa b203ea3f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ int cx = myView.getWidth() / 2;
int cy = myView.getHeight() / 2;

// get the final radius for the clipping circle
int finalRadius = Math.max(myView.getWidth(), myView.getHeight());
float finalRadius = (float) Math.hypot(cx, cy);

// create the animator for this view (the start radius is zero)
Animator anim =
@@ -107,7 +107,7 @@ int cx = myView.getWidth() / 2;
int cy = myView.getHeight() / 2;

// get the initial radius for the clipping circle
int initialRadius = myView.getWidth();
float initialRadius = (float) Math.hypot(cx, cy);

// create the animation (the final radius is zero)
Animator anim =