Esempio n. 1
0
 public abstract List <Intersection> CheckIntersection(Sphere b);
Esempio n. 2
0
 public override List <Intersection> CheckIntersection(Sphere other)
 {
     return(CheckIntersection(self, other));
 }
Esempio n. 3
0
 public override List <Intersection> CheckIntersection(Sphere b)
 {
     return(NoIntersections);
 }
Esempio n. 4
0
 public SphereCollider(Sphere sphere)
 {
     this.self = sphere;
 }
Esempio n. 5
0
 public override List <Intersection> CheckIntersection(Sphere sphere)
 {
     return(CheckIntersection(sphere, this));
 }