Help for this page

Select Code to Download


  1. or download this
     *--------------------*
      \       A          /
    ...
     /      \     \   /
    *--------*     \ /
                    *
    
  2. or download this
     *--------------------*
      \       A          /
    ...
     / A(2) \     \   /
    *--------*     \ /
                    *
    
  3. or download this
    sub _pointIsInQuadrilateral {
      my ($a_point, $a_x, $a_y) = @_;
    ...
      # Point is inside quadrilateral!
      return 1;
    }