コード例 #1
0
ファイル: IntersetUtils.cs プロジェクト: hafewa/CodingEasy
 public static bool IntersectWith(this Circle _circle, Fan _fan)
 {
     return(_fan.IntersectWith(_circle));
 }
コード例 #2
0
ファイル: IntersetUtils.cs プロジェクト: hafewa/CodingEasy
 public static bool IntersectWith(this Rectangle_AABB _rect, Fan _fan)
 {
     return(_fan.IntersectWith(_rect));
 }