| 1409 | |
| 1410 | |
| 1411 | protected void post(PGraphics g) { |
| 1412 | // for (int i = 0; i < childCount; i++) { |
| 1413 | // children[i].draw(g); |
| 1414 | // } |
| 1415 | |
| 1416 | /* |
| 1417 | // TODO this is not sufficient, since not saving fillR et al. |
| 1418 | g.stroke = strokeSaved; |
| 1419 | g.strokeColor = strokeColorSaved; |
| 1420 | g.strokeWeight = strokeWeightSaved; |
| 1421 | g.strokeCap = strokeCapSaved; |
| 1422 | g.strokeJoin = strokeJoinSaved; |
| 1423 | |
| 1424 | g.fill = fillSaved; |
| 1425 | g.fillColor = fillColorSaved; |
| 1426 | |
| 1427 | g.ellipseMode = ellipseModeSaved; |
| 1428 | */ |
| 1429 | |
| 1430 | if (matrix != null) { |
| 1431 | g.popMatrix(); |
| 1432 | } |
| 1433 | |
| 1434 | if (style) { |
| 1435 | g.popStyle(); |
| 1436 | } |
| 1437 | } |
| 1438 | |
| 1439 | |
| 1440 | //////////////////////////////////////////////////////////////////////// |