You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
582 B
C++

#include "pch.h"
#include "IDWCreator.h"
extern "C" __declspec(dllexport)
void IDWModelCreate(LPCTSTR xyzFile, LPCTSTR borderFile,LPCTSTR faultFile, LPCTSTR resultFile,
int XCount, double smoothFactor, int smoothTimes, CPPCallback callBack,
int insertTimes, double contourStep, int contourMarkSpace
, double xMin = -1, double yMin = -1, double xMax = -1, double yMax = -1)
{
CIDWCreator creator;
creator.Create(xyzFile, borderFile, faultFile, resultFile, XCount, smoothFactor, smoothTimes,
callBack, insertTimes, contourStep, contourMarkSpace
, xMin, yMin, xMax, yMax);
}