File: VDispObjects.c

package info (click to toggle)
acm4 4.7-18
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,776 kB
  • ctags: 1,621
  • sloc: ansic: 16,777; makefile: 364; sh: 31
file content (22 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "Vlib.h"

void VDisplayObjects() {

	Point3 	TmpPt;
	int	I, J;
	XPoint	xpt[MaxPts];

	for (I=0; I<NumPolys; ++I) {

		for (J=0; J<Polygons[I].PolyVtces; ++J) {
			Transform(&Points[Vertices[Polygons[I].Start + J]], &EyeSpace, &TmpPt);
			MakeDisplayable(&TmpPt);
			xpt[J].x = (int) TmpPt.X;
			xpt[J].y = (int) TmpPt.Y;
		}
/*		xpt[J] = xpt[0];
		XDrawLines (dpy, win, gc, &xpt, J+1, CoordModeOrigin); */
		XFillPolygon (dpy, win, curGC, &xpt, J, Nonconvex, CoordModeOrigin);
	}

}