--- loncom/homework/imageresponse.pm 2002/01/17 12:23:31 1.16 +++ loncom/homework/imageresponse.pm 2002/02/04 17:30:53 1.17 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # image click response style # -# $Id: imageresponse.pm,v 1.16 2002/01/17 12:23:31 harris41 Exp $ +# $Id: imageresponse.pm,v 1.17 2002/02/04 17:30:53 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -272,7 +272,9 @@ sub grade_rectangle { &Apache::lonxml::debug("Point $x1,$y1,$x2,$y2"); if ($x1 > $x2) { my $temp=$x1;$x1=$x2;$x2=$temp; } if ($y1 > $y2) { my $temp=$y1;$y1=$y2;$y2=$temp; } - if ($x => $x1) { if ($x <= $x2) { if ($y => $y1) { if ($y <= $y2) { return 'APPROX_ANS'; } } } } + if (($x >= $x1) && ($x <= $x2) && ($y >= $y1) && ($y <= $y2)) { + return 'APPROX_ANS'; + } return 'INCORRECT'; }