()
| 441 | |
| 442 | |
| 443 | protected void parseRect() { |
| 444 | kind = RECT; |
| 445 | family = PRIMITIVE; |
| 446 | params = new float[] { |
| 447 | getFloatWithUnit(element, "x", svgWidth), |
| 448 | getFloatWithUnit(element, "y", svgHeight), |
| 449 | getFloatWithUnit(element, "width", svgWidth), |
| 450 | getFloatWithUnit(element, "height", svgHeight) |
| 451 | }; |
| 452 | } |
| 453 | |
| 454 | |
| 455 | protected void parseImage() { |
no test coverage detected