aboutsummaryrefslogtreecommitdiff
path: root/src/colwheel.h
blob: d925477ad1bbd430d5d6167149d78c7de7d711b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * colwheel.h
 *
 * Colour wheel definition and visualisation
 *
 * (c) 2006-2008 Thomas White <taw27@cam.ac.uk>
 *
 *  Synth2D - two-dimensional Fourier synthesis
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef COLWHEEL_H
#define COLWHEEL_H

#include <gtk/gtk.h>

extern gint colwheel_show(GtkWidget *widget, gpointer data);
extern double colwheel_red(double am, double ph);
extern double colwheel_green(double am, double ph);
extern double colwheel_blue(double am, double ph);

#endif	/* COLWHEEL_H */