- concat
Appends the receiver’s matrix to the current transformation matrix stored in the current graphics context, replacing the current transformation matrix with the result.
レシーバの持つ行列を、現在のグラフィックコンテキストにおいて格納される現在の変換行列に付け加えて、現在の変換行列をその結果で置き換えます。
Availability 有効性
Technology
- (void)set;
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
メソッドを使うことでこの変換行列を現在の変換行列に加えてください。
- concat