/*
 * Created on Nov 17, 2006
 *
 */
package com.meapsoft.visualizer;

import com.meapsoft.EDLChunk;

/**
 * @author douglas
 *
 * This class lets us combine feat + EDL info in one place
 * 
 * */



public class ChunkVisInfo extends EDLChunk
{
	int	xFeat = 0;
	int xEDL = 0;
	int yFeat = 0;
	int yEDL = 0;
	int width = 0;
	int height = 0;
	
	//double[] features;
	public boolean selected = false;
	
	
	public ChunkVisInfo(String sf, double st, double l, double dt)
	{
		super(sf, st, l, dt);
	}
}