1 /*
2 Copyright 2000 by Ralph Hartley
3 This software is licenced under the terms of the
4 Gnu Public Licence
5 */
6 public interface Scaleable {
7
8 public void setScale(double newscale);
9 public void setRotation(double angle);
10 }
11