public override Vector2D ComputeAcceleration()
            {
                var total = new Vector2D(0, 0);

                total += friendForce.Compute(this.self.Bindings, this.world, this.self);
                return(total);
            }