JAL-535 refactored core code from PCA viewer to viewmodel.
[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 and simple structure views)
9  * @author jimp
10  *
11  */
12 public interface RotatableCanvasI
13 {
14
15   void setPoints(Vector<SequencePoint> points, int rows);
16
17 }