菜鸟教程小白 发表于 2022-12-12 15:09:48

ios - 使用Objective c在弧上点


                                            <p><p>我在获取圆弧上的点时遇到问题。我画了一条弧线。我想使用半径、原点和角度来获得圆弧上的点。在我的情况下,起源是 150,150。半径为 50。起始角度为 0,结束角度为 180。当我试图在角度 M_PI/2 处获取点时,它应该在弧的中间对齐,但它给出了错误的 x 和 y 值。如果我遗漏任何东西,请告诉我。</p>

<p> <img src="/image/l9eMD.png" alt="enter image description here"/> </p>

<p>我的代码是</p>

<pre><code> - (void)drawRect:(CGRect)rect
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetLineWidth(context, 4.0);
    CGContextSetStrokeColorWithColor(context,
                                     .CGColor);
    CGContextAddArc(context, 150, 150, 50, 0, M_PI, 0);
    CGContextStrokePath(context);

}

-(CGPoint)getPoint:(float)angle
{
    float radius = 50;
    //float x = 160+radius*cos(-M_PI/2);
    //float y = 160+radius*sin(-M_PI/2);

    float x = 150+radius*cos(angle);
    float y = 150+radius*sin(angle);

    return CGPointMake(x, y);
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果你得到一个点 (177, 192),就像你在评论中写的那样,这意味着你通过的角度大约等于 <code>1</code>。这不是 <code>M_PI/2</code>,大约是 <code>1.57</code>。</p>

<p>所以,问题在于您传递的值,而不是提到的函数。也许你错误地将角度四舍五入为整数?</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用Objective c在弧上点,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30076953/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30076953/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用Objective c在弧上点