Lines Matching refs:ncoords
263 long ncoords;
290 ncoords = 3;
292 ncoords = 4;
305 if ((arg5 = PyMem_NEW(double, s_nctl*t_nctl*ncoords )) == NULL) {
318 if (!PyArg_GetDoubleArray(pt, 1, 0, ncoords, pnext))
320 pnext += ncoords;
323 s_byte_stride = sizeof(double) * ncoords;
350 int ncoords, npoints;
366 ncoords = 2;
368 ncoords = 3;
380 if ((arg4 = PyMem_NEW(double, npoints*ncoords )) == NULL) {
385 if (!PyArg_GetDoubleArray(PyList_GetItem(v, i), 1, 0, ncoords, pnext))
387 pnext += ncoords;
389 arg3 = (sizeof(double)) * ncoords;
410 long npoints, ncoords;
422 ncoords = 2;
427 if ((data = PyMem_NEW(double, npoints*ncoords)) == NULL) {
432 if (!PyArg_GetDoubleArray(PyList_GetItem(v, i), 1, 0, ncoords, pnext))
434 pnext += ncoords;
436 pwlcurve(npoints, data, sizeof(double)*ncoords, type);