Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions core/src/processing/core/PMatrix.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,10 @@ public void preApply(float n00, float n01, float n02, float n03,
* @return the determinant of the matrix
*/
public float determinant();
/**
* Print the matrix data to the console.
*/
default void print() {
System.out.println(this);
}
}