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

Function B2Vec2Min

CommonB2Math.go:699–704  ·  view source on GitHub ↗
(a, b B2Vec2)

Source from the content-addressed store, hash-verified

697}
698
699func B2Vec2Min(a, b B2Vec2) B2Vec2 {
700 return MakeB2Vec2(
701 math.Min(a.X, b.X),
702 math.Min(a.Y, b.Y),
703 )
704}
705
706func B2Vec2Max(a, b B2Vec2) B2Vec2 {
707 return MakeB2Vec2(

Callers 7

ComputeAABBMethod · 0.85
RayCastMethod · 0.85
CombineInPlaceMethod · 0.85
CombineTwoInPlaceMethod · 0.85
B2Vec2ClampFunction · 0.85
ComputeAABBMethod · 0.85
ComputeAABBMethod · 0.85

Calls 1

MakeB2Vec2Function · 0.85

Tested by

no test coverage detected