Case

Path.Element.curve(to:control1:control2:)

A cubic Bézier curve from the previous current point to the given end-point, using the two control points to define the curve. 以前の現在の地点からこの与えられた終了点までの3次ベジェ曲線、2つの制御点を曲線を定義するのに使っています。

Declaration 宣言

case curve(to: CGPoint, control1: CGPoint, control2: CGPoint)

Discussion 議論

The end-point of the curve becomes the new current point. カーブの終点は、新しい現在の地点になります。

See Also 参照

Getting Path Elements