View Javadoc

1   // Copyright 2004, FreeHEP.
2   package hep.wired.feature;
3   
4   import hep.wired.services.Feature;
5   
6   /***
7    * Can scale uniformely.
8    *
9    * @author Mark Donszelmann
10   * @version $Id: Scaleable.java 256 2004-06-07 23:31:10Z duns $
11   */
12  
13  public interface Scaleable extends Feature {
14      
15      /***
16       * Scales by factor s.
17       */
18      public void scale(double s);
19  
20      /***
21       * Set scale to factor s.
22       */
23      public void setScale(double s);
24  }