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

Method preApply

core/src/processing/core/PMatrix3D.java:378–383  ·  view source on GitHub ↗

Apply the 3D equivalent of the 2D matrix supplied to the left of this one.

(PMatrix2D left)

Source from the content-addressed store, hash-verified

376 * Apply the 3D equivalent of the 2D matrix supplied to the left of this one.
377 */
378 public void preApply(PMatrix2D left) {
379 preApply(left.m00, left.m01, 0, left.m02,
380 left.m10, left.m11, 0, left.m12,
381 0, 0, 1, 0,
382 0, 0, 0, 1);
383 }
384
385
386 /**

Callers 7

invTranslateMethod · 0.95
invRotateXMethod · 0.95
invRotateYMethod · 0.95
invRotateZMethod · 0.95
invRotateMethod · 0.95
invScaleMethod · 0.95
invApplyMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected