Return Value 戻り値
A rotated shape. ある回転した形状。
Availability 有効性
Technology
func rotation(_ angle: Angle
, anchor: UnitPoint
= .center) -> RotatedShape
<Self>
A rotated shape. ある回転した形状。
angle
The angle of rotation to apply. Positive angles rotate clockwise; negative angles rotate counterclockwise. 適用する回転角度。正の角度は時計回りに回転します;負の角度は反時計回りに回転します。
anchor
The point to rotate the shape around. それを中心に形状を回転するポイント。
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)