Files
URDepends/FastMarching/src/multistencilFastMarchingMethod.h
2023-05-18 16:04:27 +08:00

9 lines
405 B
C

#ifndef __MULTISTENCILFASTMARCHINGMETHOD_H__
#define __MULTISTENCILFASTMARCHINGMETHOD_H__
extern "C" {
void multistencilFastMarchingMethod2D(double*F,int* FDims,double* SourcePoints, int* PDims,bool usesecond,bool usecross);
void multistencilFastMarchingMethod3D(double*F,int* FDims,double* SourcePoints, int* PDims,bool usesecond,bool usecross);
}
#endif // __MULTISTENCILFASTMARCHINGMETHOD_H__