TTK
Loading...
Searching...
No Matches
ContourAroundPoint.cpp
Go to the documentation of this file.
2
3//----------------------------------------------------------------------------//
4
6 float *coords, float *scalars, float *isovals, int *flags, std::size_t np) {
7 _inpPtsCoords = coords;
8 _inpPtsScalars = scalars;
9 _inpPtsIsovals = isovals;
10 _inpPtsFlags = flags;
11 _inpPtsNum = np;
12 if(!coords)
13 return -1;
14 if(!scalars)
15 return -2;
16 if(!isovals)
17 return -3;
18 if(!flags)
19 return -4;
20 return 0;
21}
int setInputPoints(float *coords, float *scalars, float *isovals, int *flags, std::size_t np)