コード例 #1
0
ファイル: Sphere.cs プロジェクト: momentchan/VFX-Projects
 public Sphere(Sphere other) : this(other.center, other.radius, other.transform)
 {
 }
コード例 #2
0
ファイル: Sphere.cs プロジェクト: momentchan/VFX-Projects
 public Sphere WithCenter(Vector3 center)
 {
     var copy = new Sphere(this); copy.center = center; return(copy);
 }
コード例 #3
0
ファイル: Capsule.cs プロジェクト: LABSIM/APOLLON
 public Capsule(Sphere sphere, Vector3 otherCenter)
     : this(sphere.center, otherCenter, sphere.radius, sphere.transform)
 {
 }
コード例 #4
0
 /// <summary>
 /// Returns the distance between the closest points on the Rect and the Sphere,
 /// or 0 if the two overlap.
 /// </summary>
 public static float DistanceTo(Rect rect, Sphere sphere)
 {
     return(DistanceBetween(sphere, rect));
 }
コード例 #5
0
 public static bool DoesOverlap(Box box, Sphere sphere)
 {
     return(DoesOverlap(sphere, box));
 }
コード例 #6
0
 public static bool DoesOverlap(Rect rect, Sphere sphere)
 {
     return(DoesOverlap(sphere, rect));
 }