/** * arMatrixInv関数の代替品です。 destにsourceの逆行列を返します。 * * @param dest * @param source * @throws NyARException */ public static void matrixInv(NyARMat dest, NyARMat source) { NyARException.trap("未チェックのパス"); dest.matrixDup(source); NyARException.trap("未チェックのパス"); dest.matrixSelfInv(); }