/// <summary> /// Determines if there is an intersection between the current object and a point. /// </summary> /// <param name="point">The point to test.</param> /// <returns>Whether the two objects intersected.</returns> public bool Intersects(ref Vector3 point) { return(CollisionsHelper.RayIntersectsPoint(ref this, ref point)); }