case closeSubpath
A line from the start point of the current subpath (if any) to the current point, which terminates the subpath.
現在のサブパス(もしあれば)の開始点から、サブパスを終わらせる現在の地点までのある線。
case curve(to: CGPoint, control1: CGPoint, control2: CGPoint)
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つの制御点を曲線を定義するのに使っています。
case move(to: CGPoint)
A path element that terminates the current subpath (without closing it) and defines a new current point.
あるパス要素、それは現在のサブパスを終えます(それを閉じることなく)、そして新しい現在の地点を定義します。
case quadCurve (to: CGPoint, control: CGPoint)
A quadratic Bézier curve from the previous current point to the given end-point, using the single control point to define the curve.
以前の現在の地点からこの与えられた終了点までの2次ベジェ曲線、ただ1つの制御点を曲線を定義するのに使っています。