Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/processing/processing
/ determinant
Method
determinant
core/src/processing/core/PMatrix2D.java:461–463 ·
view source on GitHub ↗
@return the determinant of the matrix
()
Source
from the content-addressed store, hash-verified
459
* @
return
the determinant of the matrix
460
*/
461
public
float determinant() {
462
return
m00 * m11 - m01 * m10;
463
}
464
465
466
//////////////////////////////////////////////////////////////
Callers
1
invert
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected