コード例 #1
0
 public bool CollideAgainstMove(Sphere sphere, float thisMass, float otherMass)
 {
     return(sphere.CollideAgainstMove(this, otherMass, thisMass));
 }
コード例 #2
0
 public bool CollideAgainstBounce(Sphere sphere, float thisMass, float otherMass, float elasticity)
 {
     return(sphere.CollideAgainstBounce(this, otherMass, thisMass, elasticity));
 }
コード例 #3
0
 public bool CollideAgainst(Sphere sphere)
 {
     return(sphere.CollideAgainst(this));
 }