作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我画圆的代码,但不知何故,它有一条从圆心到圆边的线。我没有向其中添加一行,只有 move to 和 drawArc。
var geometry = Geometry.Instance;
var path = new UIBezierPath();
path.MoveTo(new CGPoint((nfloat)centerPiece.Center.X, (nfloat)centerPiece.Center.Y));
path.AddArc(new CGPoint((nfloat)centerPiece.Center.X, (nfloat)centerPiece.Center.Y), centerPiece.Radius, 0.0f, (float)Math.PI * 2, true);
context.SetLineWidth(centerPiece.BorderWidth);
context.SetStrokeColor(GetBorderPaint(centerPiece));
context.AddPath(path.CGPath);
context.DrawPath(CGPathDrawingMode.Stroke);
最佳答案
您可以使用以下方法创建您的 UIBezierPath
:
(UIBezierPath *)createArcPath
{
UIBezierPath *aPath = [UIBezierPath bezierPathWithArcCenter:CGPointMake((nfloat)centerPiece.Center.X, (nfloat)centerPiece.Center.X)
radius:(nfloat)centerPiece.Radius
startAngle:0
endAngle:DEGREES_TO_RADIANS(360)
clockwise:YES];
return aPath;
}
这可能是一个有用的 link还有!
关于ios - Xamarin iOS : Why there is a line from the center to arc of the circle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42284939/
我是一名优秀的程序员,十分优秀!