| 214 | } |
| 215 | |
| 216 | void Matrix::postScale(float sx, float sy, float px, float py) { |
| 217 | if (1 == sx && 1 == sy) { |
| 218 | return; |
| 219 | } |
| 220 | Matrix m; |
| 221 | m.setScale(sx, sy, px, py); |
| 222 | this->postConcat(m); |
| 223 | } |
| 224 | |
| 225 | void Matrix::postScale(float sx, float sy) { |
| 226 | if (1 == sx && 1 == sy) { |