(float angle)
| 3904 | |
| 3905 | |
| 3906 | @Override |
| 3907 | public void shearY(float angle) { |
| 3908 | float t = (float) Math.tan(angle); |
| 3909 | applyMatrixImpl(1, 0, 0, 0, |
| 3910 | t, 1, 0, 0, |
| 3911 | 0, 0, 1, 0, |
| 3912 | 0, 0, 0, 1); |
| 3913 | } |
| 3914 | |
| 3915 | |
| 3916 | ////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected