Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Smooth shape shift animation

How to shift shape (from oval to rect and vice versa) animated?

Dirty code:

UIBezierPath *roundedRectBezierPath = [UIBezierPath bezierPathWithRoundedRect:newRect cornerRadius:10];
UIBezierPath *ovalBezierPath = [UIBezierPath bezierPathWithOvalInRect:newRect];

CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"path"];
animation.duration = 3;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

if (isRect) {

    self.shapeLayer.path = roundedRectBezierPath.CGPath;
    animation.fromValue = (__bridge id)(ovalBezierPath.CGPath);
    animation.toValue = (__bridge id)(roundedRectBezierPath.CGPath);

} else {

    self.shapeLayer.path = ovalBezierPath.CGPath;
    animation.fromValue = (__bridge id)(roundedRectBezierPath.CGPath);
    animation.toValue = (__bridge id)(ovalBezierPath.CGPath);

}    

[self.shapeLayer addAnimation:animation forKey:@"animatePath"];

The result is weird:

Bad animation

I expect shape to shrink/expand, not weird redraw.

like image 327
user500 Avatar asked Jul 02 '13 15:07

user500


1 Answers

If you look at the documentation this is exactly the behavior that you should expect. From the docs:

If the two paths have a different number of control points or segments the results are undefined.

You can get around this in two ways: either

  • create the paths yourself in a way that you can guarantee that they both have the same number of paths
  • create a custom animation for the path transition yourself.

Create paths with same number of segments and control points

For the first option I would use addArcWithCenter:radius:startAngle:endAngle:clockwise: four times to make up the rounded rect. (It will automatically add the straight lines to your path). You can read more about the construction of Bézier paths in "Thinking like Bézier paths" (written by me). There are some interactive elements there that should help you figure out how adding arcs to a path works.      

Create a custom path animation

The other option is to create the paths any way you want with different numbers of control points and/or segments and do the animation yourself. This is an excellent explanation of how to do your own path animations with shape layers.

like image 134
David Rönnqvist Avatar answered Sep 22 '22 11:09

David Rönnqvist