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

set

Sets the current transformation matrix to the receiver’s transformation matrix. 現在の変換行列をレシーバの変換行列に設定します。

Declaration 宣言

- (void)set;

Discussion 議論

The current transformation is stored in the current graphics context and is applied to subsequent drawing operations. You should use this method sparingly because it removes the existing transformation matrix, which is an accumulation of transformation matrices for the screen, window, and any superviews. Instead use the concat method to add this transformation matrix to the current transformation matrix. 現在の変換は、現在のグラフィックコンテキストにおいて格納されます、そして続いて起こる描画処理に適用されます。あなたは、このメソッドを使うのを控えるべきです、なぜならそれは画面、ウインドウ、そしてあらゆるスーパービューに対する変換行列の累算である既存の変換行列を除去するからです。代わりにconcatメソッドを使うことでこの変換行列を現在の変換行列に加えてください。

See Also 参照

Setting and Building the Current Transformation Matrix 現在の変換行列の設定と組み立て