X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2FRotatableCanvasI.java;h=c6eb6dec4a7e7f170d7c59dee4230c28dc329011;hb=refs%2Fheads%2FJAL-3253-applet-SwingJS-omnibus;hp=868b0519ea6edf79d31487e5adf077fe4f72bebf;hpb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;p=jalview.git diff --git a/src/jalview/api/RotatableCanvasI.java b/src/jalview/api/RotatableCanvasI.java index 868b051..c6eb6de 100644 --- a/src/jalview/api/RotatableCanvasI.java +++ b/src/jalview/api/RotatableCanvasI.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * @@ -22,7 +22,7 @@ package jalview.api; import jalview.datamodel.SequencePoint; -import java.util.Vector; +import java.util.List; /** * interface implemented by RotatatableCanvas GUI elements (such as point clouds @@ -33,7 +33,23 @@ import java.util.Vector; */ public interface RotatableCanvasI { + void setPoints(List points, int rows); - void setPoints(Vector points, int rows); + /** + * Zoom the view in (or out) by the given factor, which should be >= 0. A + * factor greater than 1 zooms in (expands the display), a factor less than 1 + * zooms out (shrinks the display). + * + * @param factor + */ + void zoom(float factor); + /** + * Rotates the view by the specified number of degrees about the x and/or y + * axis + * + * @param x + * @param y + */ + void rotate(float x, float y); }