2010-09-24 02:13:48 +03:00
|
|
|
/*
|
|
|
|
* level.h - Interactively align a nearly horizontal plane with a face
|
|
|
|
*
|
|
|
|
* Written 2010 by Werner Almesberger
|
|
|
|
* Copyright 2010 by Werner Almesberger
|
|
|
|
*
|
|
|
|
* This program 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 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2010-09-22 23:04:43 +03:00
|
|
|
#ifndef LEVEL_H
|
|
|
|
#define LEVEL_H
|
|
|
|
|
2010-09-24 05:18:46 +03:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2010-09-22 23:04:43 +03:00
|
|
|
#include "face.h"
|
|
|
|
|
|
|
|
|
2010-09-24 05:18:46 +03:00
|
|
|
void level(GtkWidget *canvas, struct face *f);
|
2010-09-22 23:04:43 +03:00
|
|
|
|
|
|
|
#endif /* LEVEL_H */
|