MCPcopy Index your code
hub / github.com/processing/processing / post

Method post

core/src/processing/core/PShape.java:1411–1437  ·  view source on GitHub ↗
(PGraphics g)

Source from the content-addressed store, hash-verified

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 ////////////////////////////////////////////////////////////////////////

Callers 2

drawMethod · 0.95
drawImplMethod · 0.45

Calls 2

popMatrixMethod · 0.45
popStyleMethod · 0.45

Tested by

no test coverage detected