Esempio n. 1
0
 public bool Raycast(ref Ray2D ray, out RayHit2D hit)
 {
     return(Geom2D.Raycast(ref this, ref ray, out hit));
 }
Esempio n. 2
0
 public bool Raycast(ref Ray2D ray, out float dist)
 {
     return(Geom2D.Raycast(ref this, ref ray, out dist));
 }
Esempio n. 3
0
 public bool Raycast(ref Ray2D ray)
 {
     return(Geom2D.Raycast(ref this, ref ray));
 }