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