// SIBGRAPI'99 poster: title, text, logos, etc. // Last edited on 1999-10-08 17:44:10 by stolfi // Requires // prose_title_texture // prose_subtitle_texture // prose_location_texture // // prose_name_texture // prose_header_texture // prose_ihc_texture // prose_geo_texture // prose_address_texture // // Defines // prose_paper_height = nominal poster height // prose_paper_width = nominal oster width // // prose_max_x, prose_min_x = x-range of prose // prose_max_y, prose_min_y = y-range of prose // // prose = the whole thing // Nominal paper dimensions #declare prose_paper_height = 2; #declare prose_paper_width = (2/3)*2; #include "prose-bot.inc" #include "prose-top.inc" // Margins of the whole thing #declare prose_max_y = +0.90; // top margin #declare prose_min_y = -0.90; // bottom margin #declare prose_width = max(prose_top_width, prose_bot_width); #declare prose_min_x = -prose_width/2; // left margin #declare prose_max_x = +prose_width/2; // right margin #declare prose_top_y = prose_max_y; #declare prose_top_x = - prose_top_width/2; #declare prose_bot_y = prose_min_y; #declare prose_bot_x = - prose_bot_width/2; #declare prose = union{ object{ prose_top translate < prose_top_x, prose_top_y, 0 > } object{ prose_bot translate < prose_bot_x, prose_bot_y, 0 > } }