/*
 * Copyright (1987) Jeff Elman.  University of California, San Diego
 * This software may be redistributed without charge; this notice
 * should be preserved.
 */
/*
 * plot2.h
 *
 * usually attached to the data area of the window,
 * this is data which is needed for window redisplay
 *
 */

struct plot2info {
	struct	plot2obj *p2obj;
	float	xmin;
	float	xmax;
	float	xinc;
	float	ymin;
	float	ymax;
	float	yinc;
	float	xscale;
	float	yscale;
	int	plotxoff;
	int	plotyoff;
	int	plotwidth;
	int	plotheight;
	int	plotfreq;
	int	ndata;
	int	nvars;
	int	xtmp;
	int	ytmp;
	float	*oldxdata;
	float	*oldydata;
};

struct plot2obj {
	char	*name;
	float	*address;
};
