aboutsummaryrefslogtreecommitdiff
path: root/grid/g_grid.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-07-31 03:59:16 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:23:30 +0200
commitd145fa6f792d6c44da2feec90507adb94e40323e (patch)
treeae3aaf213dbb4273331745802ef1259dce8e2986 /grid/g_grid.h
parent67af8f6b3f179d5b4ba0747ab971abbeecbedd45 (diff)
got everything building using the template Makefile
svn path=/trunk/externals/unauthorized/; revision=15173
Diffstat (limited to 'grid/g_grid.h')
-rw-r--r--grid/g_grid.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/grid/g_grid.h b/grid/g_grid.h
deleted file mode 100644
index 9c89228..0000000
--- a/grid/g_grid.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Copyright (c) 2002 Yves Degoyon
-* For information on usage and redistribution, and for a DISCLAIMER OF ALL
-* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
-
-/* a header for grid which enables to control
-* 2 parameters with the mouse cursor
-*/
-
-#ifndef __G_GRID_H
-#define __G_GRID_H
-
-typedef struct _grid
-{
- t_object x_obj;
- t_glist *x_glist;
- t_symbol *x_name;
- t_outlet *x_xoutlet;
- t_outlet *x_youtlet;
- int x_height; /* height of the grid */
- t_float x_min; /* minimum value of x */
- t_float x_max; /* max value of x */
- int x_width; /* width of the grid */
- t_float y_min; /* minimum value of y */
- t_float y_max; /* max value of y */
- t_float x_current; /* x coordinate of current position */
- t_float y_current; /* y coordinate of current position */
- int x_selected; /* stores selected state */
- int x_point; /* indicates if a point is plotted */
- int x_grid; /* indicates if a grid is requested */
- t_float x_xstep; /* sets the step ( grain ) for x */
- t_float x_ystep; /* sets the step ( grain ) for y */
- int x_xlines; /* number of vertical lines */
- int x_ylines; /* number of horizontal lines */
- char *x_bgcolor; /* background color */
-} t_grid;
-
-#endif