/* * * gPlanarity: * The geeky little puzzle game with a big noodly crunch! * * gPlanarity copyright (C) 2005 Monty * Original Flash game by John Tantalo * Original game concept by Mary Radcliffe * * gPlanarity is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * gPlanarity is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Postfish; see the file COPYING. If not, write to the * Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * * */ extern void region_init(); extern int region_intersects(edge *e); extern int region_layout(graph *g); extern void region_circle(int x,int y, float rad, int layout); extern void region_new_area(int x, int y, int layout); extern void region_line_to(int x,int y); extern void region_arc_to(int x,int y, float rad); extern void region_close_line(); extern void region_close_arc(float rad); extern int have_region(); extern void region_split_here();