func fill<S>(S, style: FillStyle ) -> some View
Fills this shape with a color or gradient.
この形状をある色または勾配で塗りつぶします。
func fill(style: FillStyle ) -> some View
Fills this shape with the foreground color.
この形状を前景色で塗りつぶします。
func offset(CGSize) -> OffsetShape <Self>
Changes the relative position of this shape using the specified size.
この形状の相対位置をこの指定された大きさを使って変更します。
func offset(CGPoint) -> OffsetShape <Self>
Changes the relative position of this shape using the specified point.
この形状の相対位置をこの指定された地点を使って変更します。
func offset(x: CGFloat, y: CGFloat) -> OffsetShape <Self>
Changes the relative position of this shape using the specified point.
この形状の相対位置をこの指定された地点を使って変更します。
func path(in: CGRect) -> Path
Describes this shape as a path within a rectangular frame of reference.
このシェイプをパスとしてある矩形の基準系の内部に記述します。
func rotation(Angle, anchor: UnitPoint ) -> RotatedShape <Self>
Rotates this shape around an anchor point at the angle you specify.
この形状をアンカーポイントを中心にあなたが指定する角度で回転します。
func scale(CGFloat, anchor: UnitPoint ) -> ScaledShape <Self>
Scales this shape without changing its bounding frame.
この形状をそれの境界フレームを変更することなく拡大縮小します。
func scale(x: CGFloat, y: CGFloat, anchor: UnitPoint ) -> ScaledShape <Self>
Scales this shape without changing its bounding frame.
この形状をそれの境界フレームを変更することなく拡大縮小します。
func size(CGSize) -> some Shape
Returns a new version of self representing the same shape, but that will ask it to create its path from a rect of
size
. This does not affect the layout properties of any views created from the shape (e.g. by filling it).func size(width: CGFloat, height: CGFloat) -> some Shape
Returns a new version of self representing the same shape, but that will ask it to create its path from a rect of size
(width, height)
. This does not affect the layout properties of any views created from the shape (e.g. by filling it).func stroke<S>(S, lineWidth : CGFloat) -> some View
Traces the outline of this shape with a color or gradient.
この形状の輪郭をある色または勾配でなぞります。
func stroke<S>(S, style: StrokeStyle ) -> some View
Traces the outline of this shape with a color or gradient.
この形状の輪郭をある色または勾配でなぞります。
func stroke(lineWidth : CGFloat) -> some Shape
Returns a new shape that is a stroked copy of
self
with line-width defined by lineWidth
and all other properties of StrokeStyle
having their default values.
ある新しい形状を返します、それはself
の線でなぞられたコピーです、lineWidth
によって定義された線幅そしてそれらの省略時の値を持っている全ての他のStrokeStyle
のプロパティそれらを備えます。
func stroke(style: StrokeStyle ) -> some Shape
Returns a new shape that is a stroked copy of
self
, using the contents of style
to define the stroke characteristics.
ある新しい形状を返します、それはself
の線でなぞられたコピーです、style
の内容を使って筆致特徴を定義しています。
func transform(CGAffineTransform ) -> TransformedShape <Self>
Applies an affine transform to this shape.
アフィン変換をこの形状に適用します。
func trim(from: CGFloat, to: CGFloat) -> some Shape
Trims this shape by a fractional amount based on its representation as a path.
この形状をある分量だけ刈り込みます、それの表現に基づいて、あるパスとして。