Files
Arquivotheca.SunOS-4.1.4/usr.lib/libcorepas/polygon3pas.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

92 lines
2.2 KiB
C

/*
* Copyright (c) 1986, 1987, 1988, 1989 by Sun Microsystems, Inc.
* Permission to use, copy, modify, and distribute this software for any
* purpose and without fee is hereby granted, provided that the above
* copyright notice appear in all copies and that both that copyright
* notice and this permission notice are retained, and that the name
* of Sun Microsystems, Inc., not be used in advertising or publicity
* pertaining to this software without specific, written prior permission.
* Sun Microsystems, Inc., makes no representations about the suitability
* of this software or the interface defined in this software for any
* purpose. It is provided "as is" without express or implied warranty.
*/
#ifndef lint
static char sccsid[] = "@(#)polygon3pas.c 1.1 94/10/31 Copyr 1983 Sun Micro";
#endif
/*
Copyright (c) 1983 by Sun Microsystems, Inc.
*/
#include "pasarray.h"
int polygon_abs_3();
int polygon_rel_3();
int set_light_direction();
int set_shading_parameters();
int set_vertex_indices();
int set_vertex_normals();
int polygonabs3(xlist, ylist, zlist, n)
double xlist[], ylist[], zlist[];
int n;
{
int i;
for (i = 0; i < n; ++i) {
xcoort[i] = xlist[i];
ycoort[i] = ylist[i];
zcoort[i] = zlist[i];
}
return(polygon_abs_3(xcoort, ycoort, zcoort, n));
}
int polygonrel3(xlist, ylist, zlist, n)
double xlist[], ylist[], zlist[];
int n;
{
int i;
for (i = 0; i < n; ++i) {
xcoort[i] = xlist[i];
ycoort[i] = ylist[i];
zcoort[i] = zlist[i];
}
return(polygon_rel_3(xcoort, ycoort, zcoort, n));
}
int setlightdirect(dx, dy, dz)
double dx, dy, dz;
{
return(set_light_direction(dx, dy, dz));
}
int setshadingparams(amb, dif, spec, flood, bump, hue, style)
double amb, dif, spec, flood, bump;
int hue, style;
{
return(set_shading_parameters(amb, dif, spec, flood,
bump, hue, style));
}
int setvertexindices(indxlist, n)
int indxlist[], n;
{
int i;
for (i = 0; i < n; ++i) {
xint[i] = indxlist[i];
}
return(set_vertex_indices(xint, n));
}
int setvertexnormals(dxlist, dylist, dzlist, n)
int n;
double dxlist[], dylist[], dzlist[];
{
int i;
for (i = 0; i < n; ++i) {
xcoort[i] = dxlist[i];
ycoort[i] = dylist[i];
zcoort[i] = dzlist[i];
}
return(set_vertex_normals(xcoort, ycoort, zcoort, n));
}