DRAWRECT Draw rectangle on the current axis.
   
   drawRect(RECT)
   draws the rectangles defined by RECT = [X0 Y0 W H].
   the four corners of rectangle are then :
   (X0, Y0), (X0+W, Y0), (X0, Y0+H), (X0+W, Y0+H).

   RECT = [X0 Y0 W H THETA] also specifies orientation for the rectangle.
   Theta is given in degrees.

   If RECT is a N-by-4 or N-by-5 array, several rectangles are drawn.

   drawRect(..., PARAM, VALUE)
   Specifies one or several parameters name-value pairs, see plot function
   for details.

   drawRect(AX, ...) 
   Specifies the handle of the axis to draw the rectangle on.

   H = drawRect(...) 
   Returns handle of the created graphic objects.

   See Also:
   drawOrientedBox, drawBox, rectToPolygon

Package: matgeom