// Token: 0x0600026D RID: 621 RVA: 0x0000A5D9 File Offset: 0x000087D9
 public static bool Intersects(this Circle2 circle, Line2 line)
 {
     return(line.Intersects(circle));
 }
 // Token: 0x06000306 RID: 774 RVA: 0x0000C47C File Offset: 0x0000A67C
 public static bool Intersects(this AxisAlignedBox2 axisAlignedBox, Line2 line)
 {
     return(line.Intersects(axisAlignedBox));
 }
 // Token: 0x06000265 RID: 613 RVA: 0x0000A51B File Offset: 0x0000871B
 public static bool Intersects(this Arc2 arc, Line2 line)
 {
     return(line.Intersects(arc));
 }
 // Token: 0x06000436 RID: 1078 RVA: 0x00013172 File Offset: 0x00011372
 public static bool Intersects(this Triangle2 triangle, Line2 line)
 {
     return(line.Intersects(triangle));
 }
 // Token: 0x06000323 RID: 803 RVA: 0x0000CEE9 File Offset: 0x0000B0E9
 public static bool Intersects(this Box2 box, Line2 line2)
 {
     return(line2.Intersects(box));
 }