MCPcopy Index your code
hub / github.com/benfry/processing4 / zoomStroke

Method zoomStroke

app/src/processing/app/ui/Toolkit.java:1117–1124  ·  view source on GitHub ↗
(Graphics2D g2)

Source from the content-addressed store, hash-verified

1115 static BasicStroke zoomStroke;
1116
1117 static private void zoomStroke(Graphics2D g2) {
1118 if (zoom != 1) {
1119 if (zoomStroke == null || zoomStroke.getLineWidth() != zoom) {
1120 zoomStroke = new BasicStroke(zoom);
1121 }
1122 g2.setStroke(zoomStroke);
1123 }
1124 }
1125
1126
1127 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers 1

prepareGraphicsMethod · 0.95

Calls 1

setStrokeMethod · 0.45

Tested by

no test coverage detected