じろうの公開メモ

自分用のメモ置き場です

postMultiply


postMultiply

public void postMultiply(Transform transform)
Multiplies this transformation from the right by the given transformation. The contents of this transformation are replaced with the result. Denoting this transformation by M and the given transformation by T, the new value for this transformation is computed as follows:

M' = M T
Parameters:
transform - the right-hand-side matrix multiplicant
Throws:
java.lang.NullPointerException - if transform is null
直訳:
右からのこの変化を特定の変化に掛けます。 この変化の内容を結果に取り替えます。 TでMのこの変化と特定の変化を指示して、この変化のための新しい値は以下の通り計算されます:

transform×transformってことかね?