Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
transform
Method · 0.80
tan
Method · 0.45
Tested by
no test coverage detected