Instance Method インスタンスメソッド

rotation(_:anchor:)

Rotates this shape around an anchor point at the angle you specify. この形状をアンカーポイントを中心にあなたが指定する角度で回転します。

Declaration 宣言

func rotation(_ angle: Angle, anchor: UnitPoint = .center) -> RotatedShape<Self>

Return Value 戻り値

A rotated shape. ある回転した形状。

Parameters パラメータ

angle

The angle of rotation to apply. Positive angles rotate clockwise; negative angles rotate counterclockwise. 適用する回転角度。正の角度は時計回りに回転します;負の角度は反時計回りに回転します。

anchor

The point to rotate the shape around. それを中心に形状を回転するポイント。

Discussion 議論

The following example rotates a square by 45 degrees to the right to create a diamond shape: 以下の例は、ある正方形を45度だけ右に回転して、ひし形を作成します:


RoundedRectangle(cornerRadius: 10)
.rotation(Angle(degrees: 45))
.aspectRatio(1.0, contentMode: .fit)

See Also 参照

Transforming a Shape