MCPcopy Create free account
hub / github.com/ByteArena/box2d / B2Mat22Mul

Function B2Mat22Mul

CommonB2Math.go:584–589  ·  view source on GitHub ↗

A * B

(A, B B2Mat22)

Source from the content-addressed store, hash-verified

582
583// A * B
584func B2Mat22Mul(A, B B2Mat22) B2Mat22 {
585 return MakeB2Mat22FromColumns(
586 B2Vec2Mat22Mul(A, B.Ex),
587 B2Vec2Mat22Mul(A, B.Ey),
588 )
589}
590
591// A^T * B
592func B2Mat22MulT(A, B B2Mat22) B2Mat22 {

Callers

nothing calls this directly

Calls 2

MakeB2Mat22FromColumnsFunction · 0.85
B2Vec2Mat22MulFunction · 0.85

Tested by

no test coverage detected