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

Method shearY

core/src/processing/core/PMatrix3D.java:300–306  ·  view source on GitHub ↗
(float angle)

Source from the content-addressed store, hash-verified

298
299
300 public void shearY(float angle) {
301 float t = (float) Math.tan(angle);
302 apply(1, 0, 0, 0,
303 t, 1, 0, 0,
304 0, 0, 1, 0,
305 0, 0, 0, 1);
306 }
307
308
309 public void apply(PMatrix source) {

Callers

nothing calls this directly

Calls 2

applyMethod · 0.95
tanMethod · 0.45

Tested by

no test coverage detected