Ripple Example for C++ 5.0 and later
ILEADRasterProcess* m_pRasterProc= NULL;
CoCreateInstance(CLSID_LEADRasterProcess, NULL, CLSCTX_ALL, IID_ILEADRasterProcess, (void**)&m_pRasterProc);
int CenterX = m_LeadRasterView.GetRaster().GetBitmapWidth()/2;
int CenterY = m_LeadRasterView.GetRaster().GetBitmapHeight()/2;
m_pRasterProc->Ripple(m_LeadRasterView.GetRaster(), 20, 10,0,0 ,CenterX,CenterY, RGB(0,0,0),FILL_RPT);
m_pRasterProc->Release();