菜鸟教程小白 发表于 2022-12-13 09:46:05

objective-c - objective-c : How do i smoothen the brush like a real brush?


                                            <p><p>我正在构建一个画笔应用程序,它几乎完成了,我所做的只是一个基本的画笔/绘图工具。我想给它一种更像画笔的感觉,因为在我当前的输出中它有角度,而且看起来不像是真正的画笔墨水。</p>

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

<pre><code>- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    touchSwiped = YES;
    UITouch *touch = ;   
    currentTouch = ;
    currentTouch.y -= 20;
    UIGraphicsBeginImageContext(self.view.frame.size);
    ;
    CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
    CGContextSetLineWidth(UIGraphicsGetCurrentContext(), 35.0);
    CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), redAmt, blueAmt, greenAmt, 1.0);
    CGContextBeginPath(UIGraphicsGetCurrentContext());
    CGContextMoveToPoint(UIGraphicsGetCurrentContext(), endingPoint.x, endingPoint.y);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentTouch.x, currentTouch.y);
    CGContextStrokePath(UIGraphicsGetCurrentContext());
    touchDraw.image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    endingPoint = currentTouch;

    touchMoved++;

    if (touchMoved == 10) {
      touchMoved = 0;
    }
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我不知道您是否能够在没有获得您描述的角度的情况下为此使用触摸事件。事件的分辨率不够离散。</p>

<p>OpenGL 似乎更合适。查看 Apple 的 <a href="http://developer.apple.com/library/ios/#samplecode/GLPaint/Introduction/Intro.html" rel="noreferrer noopener nofollow">GLPaint sample code</a>举个例子。</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c -objective-c: How do i smoothen the brush like a real brush?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8117003/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8117003/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - objective-c : How do i smoothen the brush like a real brush?