Swift Update addQuadCurve Control Point?



有没有办法动态调整贝塞尔路径四边形曲线的控制点?

我正在为孩子们创建一个小型拖放绘图应用程序。我希望他们在画布上添加一条线,然后调整曲线点以使用手指拖动来创建微笑或皱眉。

我目前正在使用 UIBezierPath 绘制一条简单的线,并且我已经为父级添加了手势识别器。我尝试删除所有点并在拖动时添加新的四边形曲线,以及使用新的控制点坐标重新绘制路径。

这是我创建路径的方式:

//path defined else where
func createBezierPath (withRectRef rectRef: RectFramer)-> UIBezierPath {

path.move(to: rectRef.bottomLeft)
path.move(to: rectRef.bottomRight)
path.move(to: rectRef.topRight)
path.addQuadCurve(to: rectRef.topLeft, controlPoint: CGPoint(x:rectRef.midX, y: rectRef.midY )) // top middle control point
return path
}

将其添加到视图

let shapeLayer = CAShapeLayer()
shapeLayer.path = createBezierPath(withRectRef: frameRef!).cgPath
shapeLayer.strokeColor = UIColor.blue.cgColor
shapeLayer.fillColor = UIColor.clear.cgColor
shapeLayer.lineWidth = 4.0
shapeLayer.position = CGPoint(x: 0, y: 0)
self.backgroundColor = UIColor.clear
// add the new layer to our custom view
self.layer.addSublayer(shapeLayer)
let gestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(handlePan))
gestureRecognizer.delegate = self
self.addGestureRecognizer(gestureRecognizer)

任何帮助/提示将不胜感激

我无法实现我想要的尝试调整现有路径的四边形曲线。相反,我每次都必须使用调整后的曲线重新绘制路径。

相关内容

  • 没有找到相关文章

最新更新