View Javadoc

1   /**
2    * File: 	AffineTransform2D.java
3    * Project: javaGeom
4    * 
5    * Distributed under the LGPL License.
6    *
7    * Created: 5 feb. 09
8    */
9   package math.geom2d.transform;
10  
11  
12  
13  /**
14   * @author dlegland
15   * @deprecated use math.geom2d.AffineTransform2D instead (0.7.0)
16   */
17  @Deprecated
18  public class AffineTransform2D extends math.geom2d.AffineTransform2D {
19  
20      /**
21       * 
22       */
23      public AffineTransform2D() {
24      }
25  
26      /**
27       */
28      public AffineTransform2D(AffineTransform2D trans) {
29          super(trans);
30      }
31  
32      /**
33       */
34      public AffineTransform2D(double[] coefs) {
35          super(coefs);
36      }
37  
38      /**
39       */
40      public AffineTransform2D(double xx, double yx, double tx, double xy,
41              double yy, double ty) {
42          super(xx, yx, tx, xy, yy, ty);
43      }
44  
45  }