Home
last modified time | relevance | path

Searched refs:nPtsMax (Results 1 – 5 of 5) sorted by relevance

/dports/astro/tclgeomap/tclgeomap-2.11.6/generic/
H A DmapLines.c44 MapLnCreate(nPtsMax) in MapLnCreate() argument
45 unsigned nPtsMax; in MapLnCreate()
51 if (nPtsMax == 0) {
55 mapLnPtr->nPtsMax = nPtsMax;
80 mapLnPtr->nPts = mapLnPtr->nPtsMax = 0;
161 MapLnSetAlloc(mapLnPtr, nPtsMax) in MapLnSetAlloc() argument
163 unsigned nPtsMax;
171 if (mapLnPtr->nPtsMax == nPtsMax) {
174 if (nPtsMax == 0) {
181 mapLnPtr->nPtsMax = nPtsMax;
[all …]
H A DgeoLines.c51 GeoLnCreate(nPtsMax) in GeoLnCreate() argument
52 unsigned nPtsMax; in GeoLnCreate()
58 if (nPtsMax == 0) {
62 lnPtr->nPtsMax = nPtsMax;
168 GeoLnSetAlloc(lnPtr, nPtsMax) in GeoLnSetAlloc() argument
170 unsigned nPtsMax;
172 if (lnPtr->nPtsMax == nPtsMax) {
175 if (nPtsMax == 0) {
181 nPtsMax * sizeof(GeoPt));
182 lnPtr->nPtsMax = nPtsMax;
[all …]
H A DmapLines.h47 unsigned nPtsMax; /* Max number of points in current allocation */ member
H A DgeoLines.h39 unsigned nPtsMax; /* Max number of points in current allocation */ member
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/test/jts/perf/operation/distance/
H A DTestPerfDistanceGeomSet.java127 Geometry[] createRandomCircles(int numGeom, int nPtsMin, int nPtsMax) in createRandomCircles() argument
129 int nPtsRange = nPtsMax - nPtsMin + 1; in createRandomCircles()