CheckCollisionPointLine method

bool CheckCollisionPointLine(
  1. Vector2C point,
  2. Vector2C p1,
  3. Vector2C p2,
  4. int threshold,
)

Implementation

bool CheckCollisionPointLine(
  Vector2C point,
  Vector2C p1,
  Vector2C p2,
  int threshold,
) {
  return _CheckCollisionPointLine(point, p1, p2, threshold);
}