001package org.biojava.bio.gui.sequence;
002
003import java.awt.Graphics2D;
004
005import org.biojava.bio.seq.Feature;
006
007/**
008 *
009 *
010 * @author Matthew Pocock
011 */
012public interface CircularFeatureRenderer {
013  public void renderFeature(
014    Graphics2D g,
015    Feature f,
016    CircularRendererContext context );
017
018  public double getDepth(CircularRendererContext crc);
019}