public bool Raycast(ref Ray2D ray, out RayHit2D hit) { return(Geom2D.Raycast(ref this, ref ray, out hit)); }
public bool Raycast(ref Ray2D ray, out float dist) { return(Geom2D.Raycast(ref this, ref ray, out dist)); }
public bool Raycast(ref Ray2D ray) { return(Geom2D.Raycast(ref this, ref ray)); }