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

translateX(by:yBy:)

Applies the specified translation factors to the receiver’s transformation matrix. 指定された変換因数をレシーバの変換行列に適用します。

Declaration 宣言

func translateX(by deltaX: CGFloat, 
            yBy deltaY: CGFloat)

Parameters パラメータ

deltaX

The number of units to move along the x axis. x軸に沿って移動する単位数。

deltaY

The number of units to move along the y axis. y軸に沿って移動する単位数。

Discussion 議論

Subsequent transformations cause coordinates to be shifted by deltaX units along the x axis and by deltaY units along the y axis. Translation factors do not affect NSSize values, which specify a differential between points. そのあとに続く変換は、座標がx軸に沿ってdeltaX単位だけそしてy軸に沿ってdeltaY単位だけずらされます。変換因数は、NSSize値には影響を及ぼしません、それはポイント間の差異を指定します

See Also 参照

Accumulating Transformations 変換の累算