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

Method invRotateY

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

Source from the content-addressed store, hash-verified

755
756
757 protected void invRotateY(float angle) {
758 float c = cos(-angle);
759 float s = sin(-angle);
760 preApply(c, 0, s, 0, 0, 1, 0, 0, -s, 0, c, 0, 0, 0, 0, 1);
761 }
762
763
764 protected void invRotateZ(float angle) {

Callers

nothing calls this directly

Calls 3

cosMethod · 0.95
sinMethod · 0.95
preApplyMethod · 0.95

Tested by

no test coverage detected