Type Method 型メソッド

ellipticalGradient(colors:center:startRadiusFraction:endRadiusFraction:)

A radial gradient that draws an ellipse defined by a collection of colors.

Declaration 宣言

static func ellipticalGradient(colors: [Color], center: UnitPoint = .center, startRadiusFraction: CGFloat = 0, endRadiusFraction: CGFloat = 0.5) -> EllipticalGradient
Available when Self is EllipticalGradient.

Discussion 議論

The gradient maps its coordinate space to the unit space square in which its center and radii are defined, then stretches that square to fill its bounding rect, possibly also stretching the circular gradient to have elliptical contours.

For example, an elliptical gradient used as a background:


.background(.elliptical(colors: [.red, .yellow]))

For information about how to use shape styles, see ShapeStyle.

See Also 参照

Elliptical Gradients