Date: Jan 19, 2013 1:06 PM Author: Jessica Subject: create polygon coordinates I have coordinates such as this:
384 360 60 69
that represent the left, top, width, and height of an ellipse. How can I turn these values into a list that specifies a polygon?
I would like to use this polygon list to find out whether particular X and Y coordinates fall inside this ellipse:
k_inside1= inpolygon(X_Coordinate, Y_Coordinate, X_Polygon3, Y_Polygon3);
Thanks!