formatting
[jalview.git] / src / jalview / api / RotatableCanvasI.java
1 package jalview.api;
2
3 import jalview.datamodel.SequencePoint;
4
5 import java.util.Vector;
6
7 /**
8  * interface implemented by RotatatableCanvas GUI elements (such as point clouds
9  * and simple structure views)
10  * 
11  * @author jimp
12  * 
13  */
14 public interface RotatableCanvasI
15 {
16
17   void setPoints(Vector<SequencePoint> points, int rows);
18
19 }