gpt4 book ai didi

ios - 为贝塞尔曲线的一个点设置动画

转载 作者:可可西里 更新时间:2023-11-01 04:14:15 25 4
gpt4 key购买 nike

<分区>

是否可以为贝塞尔曲线的一个点设置动画?我正在尝试从直线平滑过渡到箭头。

Animate Bezier Point

这是代码中的行

//// Color Declarations
UIColor* white = [UIColor colorWithRed: 1 green: 1 blue: 1 alpha: 0.374];

//// Group
{
//// Bezier Drawing
UIBezierPath* bezierPath = [UIBezierPath bezierPath];
[bezierPath moveToPoint: CGPointMake(30.5, 43.5)];
[bezierPath addLineToPoint: CGPointMake(30.5, 29.59)];
[bezierPath addLineToPoint: CGPointMake(30.5, 15.5)];
bezierPath.lineCapStyle = kCGLineCapRound;

bezierPath.lineJoinStyle = kCGLineJoinBevel;

[white setStroke];
bezierPath.lineWidth = 5.5;
[bezierPath stroke];
}

...但是我不知道如何选择一个点并为其设置动画。这可能吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com