File: VDrawPoly.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 (35 lines) | stat: -rw-r--r-- 758 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
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "Vlib.h"

void VDrawPolygon(v, win, gc, poly)
Viewport *v;
Window	 win;
GC	 gc;
VPolygon *poly; {

	VPoint 	*p;
	XPoint	xpt[VmaxVP];
	int	i;
	Drawable d;

	d = (v->flags & VPPixmap) ? (Drawable) v->monoPixmap : (Drawable) win;

	if (poly == (VPolygon *) NULL)
		return;

	for ((i=0, p=poly->vertex); i<poly->numVtces; (++i, ++p)) {
	    if (v->flags & VPPerspective) {
		xpt[i].x = (v->Middl.x + (int) (v->Scale.x * p->x / p->z)) >> 2;
		xpt[i].y = (v->Middl.y - (int) (v->Scale.y * p->y / p->z)) >> 2;
	    }
	    else {
		xpt[i].x = (v->Middl.x + (int) (v->Scale.x * p->x)) >> 2;
		xpt[i].y = (v->Middl.y - (int) (v->Scale.y * p->y)) >> 2;
	    }
	}

	if (i > 0) {
		xpt[i] = xpt[0];
		XDrawLines (v->dpy, d, gc, xpt, i+1, CoordModeOrigin);
	}

}