MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / operator*

Method operator*

include/Matrix.hpp:142–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140 RLCPP_NODISCARD Matrix Multiply(float value) const { return ::MatrixMultiplyValue(*this, value); }
141
142 Matrix operator*(const ::Matrix& matrix) { return ::MatrixMultiply(*this, matrix); }
143
144 Matrix operator*(float value) { return ::MatrixMultiplyValue(*this, value); }
145

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected