touchvg.core.Matrix2d.postMultBy C# (CSharp) Method

postMultBy() public method

public postMultBy ( Matrix2d rightSide ) : Matrix2d
rightSide Matrix2d
return Matrix2d
  public Matrix2d postMultBy(Matrix2d rightSide) {
    Matrix2d ret = new Matrix2d(touchvgPINVOKE.Matrix2d_postMultBy(swigCPtr, Matrix2d.getCPtr(rightSide)), false);
    if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
    return ret;
  }