You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
171 B

% judge if a position in a rectangle
function res = isInRect(x, y, x_, y_)
if abs(x_) < x && abs(y_) < y
res = true;
else
res = false;
end
end