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

Method scale

core/src/processing/opengl/PShapeOpenGL.java:1282–1289  ·  view source on GitHub ↗
(float s)

Source from the content-addressed store, hash-verified

1280
1281
1282 @Override
1283 public void scale(float s) {
1284 if (is3D) {
1285 transform(SCALE, s, s, s);
1286 } else {
1287 transform(SCALE, s, s);
1288 }
1289 }
1290
1291
1292 @Override

Callers

nothing calls this directly

Calls 1

transformMethod · 0.95

Tested by

no test coverage detected