MCPcopy Create free account
hub / github.com/MeshInspector/MeshLib / outer

Function outer

source/MRMesh/MRMatrix3.h:165–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163/// x = a * b^T
164template <typename T>
165inline Matrix3<T> outer( const Vector3<T> & a, const Vector3<T> & b )
166{
167 return { a.x * b, a.y * b, a.z * b };
168}
169
170template <typename T>
171constexpr Matrix3<T> Matrix3<T>::rotation( const Vector3<T> & axis, T angle ) noexcept MR_REQUIRES_IF_SUPPORTED( std::floating_point<T> )

Callers 4

addMethod · 0.70
findPureRotation_Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected