func path(in: CGRect) -> Path
Describes this shape as a path within a rectangular frame of reference.
このシェイプをパスとしてある矩形の基準系の内部に記述します。
Availability 有効性
Technology
protocol Shape : Animatable
, View
Shapes without an explicit fill or stroke get a default fill based on the foreground color. 明示的な塗りや輪郭線のない形状は、前景色に基づく省略時の塗りを得ます。
You can define shapes in relation to an implicit frame of reference, such as the natural size of the view that contains it. Alternatively, you can define shapes in terms of absolute coordinates. あなたは、たとえばそれを含むビューの現寸など、暗黙的な基準系に関して形状を定義できます。あるいはまた、あなたは形状を絶対座標の観点から定義できます。
func path(in: CGRect) -> Path
func trim(from: CGFloat, to: CGFloat) -> some Shape
func transform(CGAffineTransform ) -> TransformedShape <Self>
func size(CGSize) -> some Shape
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
(width, height)
. This does not affect the layout properties of any views created from the shape (e.g. by filling it).func scale(CGFloat, anchor: UnitPoint ) -> ScaledShape <Self>
func scale(x: CGFloat, y: CGFloat, anchor: UnitPoint ) -> ScaledShape <Self>
func rotation(Angle, anchor: UnitPoint ) -> RotatedShape <Self>
func offset(CGSize) -> OffsetShape <Self>
func offset(CGPoint) -> OffsetShape <Self>
func offset(x: CGFloat, y: CGFloat) -> OffsetShape <Self>
func stroke<S>(S, lineWidth : CGFloat) -> some View
func stroke(lineWidth : CGFloat) -> some Shape
self
with line-width defined by lineWidth
and all other properties of StrokeStyle
having their default values.
ある新しい形状を返します、それはself
の線でなぞられたコピーです、lineWidth
によって定義された線幅そしてそれらの省略時の値を持っている全ての他のStrokeStyle
のプロパティそれらを備えます。
func stroke<S>(S, style: StrokeStyle ) -> some View
func stroke(style: StrokeStyle ) -> some Shape
self
, using the contents of style
to define the stroke characteristics.
ある新しい形状を返します、それはself
の線でなぞられたコピーです、style
の内容を使って筆致特徴を定義しています。
func fill<S>(S, style: FillStyle ) -> some View
func fill(style: FillStyle ) -> some View
static var role: ShapeRole
protocol InsettableShape
enum ShapeRole
struct StrokeStyle
struct FillStyle