1.
QUAD.C : by Christophe Schlick and Gilles Subrenat (15 May 1994 ...
'y' : 'z')) /* ** Check if the point is in the quadrangle */ static bool point_in_quad (QUAD *Quad, HIT *Hit) { char LargestComponent; /* of the normal ...
2.
filter.c
... { register int c; extern int optind; extern char *optarg; int xsize = 0, ysize = 0; double (*f)() = filter; double s = filter_support; char *dstfile, ...
3.
vector.C
TEST FILE FOR graph (Dynamic Layout Alg) ** ** MODUL - 2D VECTOR OPERATIONS ** ** Author: dr. Szirmay-Kalos Laszlo (szirmay@fsz.bme.hu) ** Technical ...
4.
Filtered Image Rescaling * * by Dale Schumacher */ #include <stdio ...
... double (*f)() = filter; double s = filter_support; char *dstfile, *srcfile; Image *dst, ... EOF) { switch(c) { case 'x': xsize = atoi(optarg); break; ...
5.
ACM Transactions on Graphics
TOG papers are available online via the ACM Digital Library. Note: SIGGRAPH members have complimentary access to TOG (and other graphics content) on the ACM ...
6.
filter.c
... { register int c; extern int optind; extern char *optarg; int xsize = 0, ysize = 0; double (*f)() = filter; double s = filter_support; char *dstfile, ...
7.
ACM Transactions on Graphics
TOG papers are available online via the ACM Digital Library. Note: SIGGRAPH members have complimentary access to TOG (and other graphics content) on the ACM ...
8.
unmatrix.c - given a 4x4 matrix, decompose it into standard ...
... pout->y = (pin->x * m->element[0][1]) + (pin->y * m->element[1][1]) + (pin->z * m->element[2][1]) + (pin->w * m->element[3][1]); pout->z = (pin->x ...
9.
typedef struct { float x, y, z; } Point; /* * TriCubic - tri-cubic ...
float TriCubic (Point p, float *volume, int xDim, int yDim, int zDim) { int x, y, z; register int i, j, k; float dx, dy, dz; register float *pv; float u[4], ...
10.
typedef struct { float x, y, z; } Point; /* * TriCubic - tri-cubic ...
returns: * the interpolated value at p. * note: * NO range checking is done in this function. */ float TriCubic (Point p, float *volume, int xDim, int yDim, ...