Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/processing/processing
/ invRotateX
Method
invRotateX
core/src/processing/core/PMatrix3D.java:750–754 ·
view source on GitHub ↗
(float angle)
Source
from the content-addressed store, hash-verified
748
749
750
protected
void
invRotateX(float angle) {
751
float c = cos(-angle);
752
float s = sin(-angle);
753
preApply(1, 0, 0, 0, 0, c, -s, 0, 0, s, c, 0, 0, 0, 0, 1);
754
}
755
756
757
protected
void
invRotateY(float angle) {
Callers
nothing calls this directly
Calls
3
cos
Method · 0.95
sin
Method · 0.95
preApply
Method · 0.95
Tested by
no test coverage detected