Ejemplo n.º 1
0
 public bool CollideAgainstMove(Sphere sphere, float thisMass, float otherMass)
 {
     return(sphere.CollideAgainstMove(this, otherMass, thisMass));
 }
Ejemplo n.º 2
0
 public bool CollideAgainstBounce(Sphere sphere, float thisMass, float otherMass, float elasticity)
 {
     return(sphere.CollideAgainstBounce(this, otherMass, thisMass, elasticity));
 }
Ejemplo n.º 3
0
 public bool CollideAgainst(Sphere sphere)
 {
     return(sphere.CollideAgainst(this));
 }