()
| 1354 | |
| 1355 | |
| 1356 | @Override |
| 1357 | public void resetMatrix() { |
| 1358 | if (shapeCreated && matrix != null && matrixInv != null) { |
| 1359 | if (family == GROUP) { |
| 1360 | updateTessellation(); |
| 1361 | } |
| 1362 | if (tessellated) { |
| 1363 | applyMatrixImpl(matrixInv); |
| 1364 | } |
| 1365 | matrix.reset(); |
| 1366 | matrixInv.reset(); |
| 1367 | } |
| 1368 | } |
| 1369 | |
| 1370 | |
| 1371 | protected void transform(int type, float... args) { |
no test coverage detected