(int q, int r, int s, int t)
| 104 | } |
| 105 | |
| 106 | public Transformation qrst(int q, int r, int s, int t){ |
| 107 | this.q = BigInteger.valueOf(q); |
| 108 | this.r = BigInteger.valueOf(r); |
| 109 | this.s = BigInteger.valueOf(s); |
| 110 | this.t = BigInteger.valueOf(t); |
| 111 | k = 0; |
| 112 | return this; |
| 113 | } |
| 114 | |
| 115 | public Transformation compose(Transformation a){ |
| 116 | return new Transformation( |