Structure

AngularGradient

An angular gradient. 角勾配(角度によるグラデーション)。

Declaration 宣言

@frozen struct AngularGradient

Overview 概要

An angular gradient is also known as a “conic” gradient. This gradient applies the color function as the angle changes, relative to a center point and defined start and end angles. If endAngle - startAngle > 2π, the gradient only draws the last complete turn. If endAngle - startAngle < 2π, the gradient fills the missing area with the colors defined by gradient locations one and zero, transitioning between the two halfway across the missing area. 角勾配はまた “円錐” 勾配として知られます。この勾配(グラデーション)は、色関数を角度変化として適用します、ある中心点に関してそして開始および終了角度を定義されて。endAngle - startAngle > 2πならば、勾配は最後の完了回転を描画するだけです。endAngle - startAngle < 2πならば、勾配はその欠けている領域を勾配位置1とゼロによって定義される色で、欠けている領域を横切って2つの中途の間を推移しながら、満たします。 The gradient maps the unit space center point into the bounding rectangle of each shape filled with the gradient.

When using an angular gradient as a shape style, you can also use angularGradient(_:center:startAngle:endAngle:), conicGradient(_:center:angle:), or similar methods.

Topics 話題

Creating a Full Rotation Angular Gradient

Creating a Partial Rotation Angular Gradient

Supporting Types 支援を行う型

Relationships 関係

Conforms To 次に準拠

See Also 参照

Supporting Shape Style Types