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

Method Multiply

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

Source from the content-addressed store, hash-verified

136 static Matrix Scale(float x, float y, float z) { return ::MatrixScale(x, y, z); }
137
138 RLCPP_NODISCARD Matrix Multiply(const ::Matrix& right) const { return ::MatrixMultiply(*this, right); }
139
140 RLCPP_NODISCARD Matrix Multiply(float value) const { return ::MatrixMultiplyValue(*this, value); }
141

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected