(PApplet parent, PShape src, PShape dest)
| 1465 | |
| 1466 | // TODO unapproved |
| 1467 | static protected void copyGroup(PApplet parent, PShape src, PShape dest) { |
| 1468 | copyMatrix(src, dest); |
| 1469 | copyStyles(src, dest); |
| 1470 | copyImage(src, dest); |
| 1471 | for (int i = 0; i < src.childCount; i++) { |
| 1472 | PShape c = PShape.createShape(parent, src.children[i]); |
| 1473 | dest.addChild(c); |
| 1474 | } |
| 1475 | } |
| 1476 | |
| 1477 | |
| 1478 | // TODO unapproved |
no test coverage detected