1
2
3
4
5
6
7
8
9 package math.geom2d.transform;
10
11
12
13
14
15
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 }