MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / det2

Function det2

SRC/element/CEqElement/ASDEmbeddedNodeElement.cpp:49–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47{
48
49 double det2(const Matrix& J) {
50 return J(0, 0) * J(1, 1) - J(0, 1) * J(1, 0);
51 }
52
53 double det3(const Matrix& J) {
54 return J(0, 0) * J(1, 1) * J(2, 2) - J(0, 0) * J(1, 2) * J(2, 1) - J(0, 1) * J(1, 0) * J(2, 2) +

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected