Skip to content

Commit

Permalink
added print(); to the PMatrix interface
Browse files Browse the repository at this point in the history
fixed issue benfry#811 printing a PMatrix now possible
  • Loading branch information
rndmbluescreen committed Feb 12, 2024
1 parent 6a2cf8c commit 5d4fda3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/processing/core/PMatrix.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,9 @@ public void preApply(float n00, float n01, float n02, float n03,
* @return the determinant of the matrix
*/
public float determinant();

/**
* Prints this matrix to the console.
*/
public void print();
}

0 comments on commit 5d4fda3

Please sign in to comment.