MCPcopy Create free account
hub / github.com/benfry/processing4 / drawImpl

Method drawImpl

core/src/processing/core/PShapeSVG.java:1765–1779  ·  view source on GitHub ↗
(PGraphics g)

Source from the content-addressed store, hash-verified

1763 }
1764
1765 @Override
1766 public void drawImpl(PGraphics g) {
1767 if (font == null) {
1768 font = ((Text) parent).font;
1769 if (font == null) {
1770 return;
1771 }
1772 }
1773
1774 pre(g);
1775// g.textFont(font, font.size / TEXT_QUALITY);
1776 g.textFont(font, font.size);
1777 g.text(textToDisplay, 0, 0);
1778 post(g);
1779 }
1780 }
1781
1782

Callers

nothing calls this directly

Calls 4

preMethod · 0.45
textFontMethod · 0.45
textMethod · 0.45
postMethod · 0.45

Tested by

no test coverage detected