Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
699
func
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
706
func
B2Vec2Max(a, b B2Vec2) B2Vec2 {
707
return
MakeB2Vec2(
Callers
7
ComputeAABB
Method · 0.85
RayCast
Method · 0.85
CombineInPlace
Method · 0.85
CombineTwoInPlace
Method · 0.85
B2Vec2Clamp
Function · 0.85
ComputeAABB
Method · 0.85
ComputeAABB
Method · 0.85
Calls
1
MakeB2Vec2
Function · 0.85
Tested by
no test coverage detected