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