Files
URDepends/FastMarching/src/multistencilFastMarchingMethod.h

9 lines
405 B
C
Raw Normal View History

2023-05-18 16:04:27 +08:00
#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__