File: VCopyPoly.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 (8 lines) | stat: -rw-r--r-- 143 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
#include "Vlib.h"

VPolygon *
VCopyPolygon (poly)
VPolygon *poly;
{
	return VCreatePolygonFromTemplate (poly->numVtces, poly->vertex, poly);
}