public bool BeforeDestination(Vector3d vel)
 {
     return(Obstacle.BeforeDestination(VSL, vel));
 }
            public bool BeforeDestination(VesselWrapper VSL, Vector3d vel)
            {
                var point = new TerrainPoint(0, CollisionPoint);

                return(point.BeforeDestination(VSL, vel));
            }