Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
208
mat4 mat4::inv() const {
209
auto result = mat4{};
210
result.mat_ = this->mat_.inverse();
211
212
return result;
213
}
214
215
float& mat4::operator()(const int row, const int col) {
216
return mat_(row, col);
Callers
7
draw
Method · 0.80
draw
Method · 0.80
scale_at
Method · 0.80
move_to
Method · 0.80
get_position
Method · 0.80
stage_coordinates
Function · 0.80
TEST
Function · 0.80
Calls
no outgoing calls
Tested by
1
TEST
Function · 0.64