.\" Generated by the Allegro makedoc utility .TH create_scene 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME create_scene \- Allocates memory for a 3d scene. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B int create_scene(int nedge, int npoly); .SH DESCRIPTION Allocates memory for a scene, `nedge' and `npoly' are your estimates of how many edges and how many polygons you will render (you cannot get over the limit specified here). If you use same values in successive calls, the space will be reused (no new malloc()). The memory allocated is a little less than 150 * (nedge + npoly) bytes. .SH "RETURN VALUE" Returns zero on success, or a negative number if allocations fail. .SH SEE ALSO .BR scene_polygon3d (3alleg4), .BR render_scene (3alleg4), .BR clear_scene (3alleg4), .BR destroy_scene (3alleg4), .BR scene_gap (3alleg4), .BR create_zbuffer (3alleg4), .BR exscn3d (3alleg4)