コード例 #1
0
ファイル: Circle2D.cs プロジェクト: 0thElement/ArcCore
 public bool CollidesWith(Circle2D other)
 => math.length(center - other.center) <= radius + other.radius;