MCPcopy Create free account
hub / github.com/OpenImageDebugger/OpenImageDebugger / inv

Method inv

src/math/linear_algebra.cpp:208–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208mat4 mat4::inv() const {
209 auto result = mat4{};
210 result.mat_ = this->mat_.inverse();
211
212 return result;
213}
214
215float& mat4::operator()(const int row, const int col) {
216 return mat_(row, col);

Callers 7

drawMethod · 0.80
drawMethod · 0.80
scale_atMethod · 0.80
move_toMethod · 0.80
get_positionMethod · 0.80
stage_coordinatesFunction · 0.80
TESTFunction · 0.80

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.64