gpt4 book ai didi

ios - 如何在两个方向上延伸使用 CGMutablePathRef 绘制的线?

转载 作者:行者123 更新时间:2023-11-29 03:21:35 24 4
gpt4 key购买 nike

我正在画线使用

CGMutablePathRef path = CGPathCreateMutable();

for (int i = 0; i < [_points count]; i++)
{
CGPoint pt = [[_points objectAtIndex:i] CGPointValue];
if (i == 0)
{
CGPathMoveToPoint(path, NULL, pt.x+1, pt.y+1);
}
else
{
CGPathAddLineToPoint(path, NULL, pt.x+1, pt.y+1);
}
}

CGContextSetLineWidth(context, 1.0f);
CGContextSetStrokeColorWithColor(context, curveColor.CGColor);
CGContextAddPath(context, path);
CGContextStrokePath(context);
CGPathRelease(path);

我可以在一个方向延伸线。但我想在一定程度上在两个方向(向上和向下)延伸这条线。如何双向延长线?

最佳答案

延伸一端:

[_points insertObject:newStartPoint atIndex:0];

和另一个:

[_points addObject:newEndPoint];

关于ios - 如何在两个方向上延伸使用 CGMutablePathRef 绘制的线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21025972/

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