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

Method shearX

core/src/processing/javafx/PGraphicsFX2D.java:1705–1710  ·  view source on GitHub ↗
(float angle)

Source from the content-addressed store, hash-verified

1703
1704
1705 @Override
1706 public void shearX(float angle) {
1707 Affine temp = new Affine();
1708 temp.appendShear(Math.tan(angle), 0);
1709 context.transform(temp);
1710 }
1711
1712
1713 @Override

Callers

nothing calls this directly

Calls 2

transformMethod · 0.80
tanMethod · 0.45

Tested by

no test coverage detected