File: VEyeToScr.c

package info (click to toggle)
acm 5.0-19
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,852 kB
  • ctags: 4,792
  • sloc: ansic: 42,427; makefile: 706; cpp: 293; perl: 280; sh: 198
file content (27 lines) | stat: -rw-r--r-- 561 bytes parent folder | download | duplicates (9)
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

#include "Vlib.h"

/*
 *  Transform a 3-D point in the eye space system into viewable
 *  coordinates.  The function returns 1 if the x,y information is
 *  displayable (probably displayable, that is).
 *
 *  VWorldToEye can be used to convert world coordinates to x,y values.
 */

int
VEyeToScreen(Viewport * v, VPoint * p, int *x, int *y)
{

	register int valid;

	if (p->z > 0.0) {
		*x = (v->Middl.x + (int) (v->Scale.x * p->x / p->z)) >> 2;
		*y = (v->Middl.y - (int) (v->Scale.y * p->y / p->z)) >> 2;
		valid = 1;
	}
	else
		valid = 0;

	return valid;
}