JAL-535 refactored core code from PCA viewer to viewmodel.
[jalview.git] / src / jalview / api / RotatableCanvasI.java
diff --git a/src/jalview/api/RotatableCanvasI.java b/src/jalview/api/RotatableCanvasI.java
new file mode 100644 (file)
index 0000000..0d3d184
--- /dev/null
@@ -0,0 +1,17 @@
+package jalview.api;
+
+import jalview.datamodel.SequencePoint;
+
+import java.util.Vector;
+
+/**
+ * interface implemented by RotatatableCanvas GUI elements (such as point clouds and simple structure views)
+ * @author jimp
+ *
+ */
+public interface RotatableCanvasI
+{
+
+  void setPoints(Vector<SequencePoint> points, int rows);
+
+}