Re: Bounding Rectangle
Re: Bounding Rectangle
- Subject: Re: Bounding Rectangle
- From: Philip Aker <email@hidden>
- Date: Sun, 28 Jul 2002 15:39:48 -0700
On Sunday, July 28, 2002, at 02:28 PM, Paul Berkowitz wrote:
Class: List of four integers (Bounding Rectangle data type).
The first two integers specify the coordinates of the upper left
corner of the item9s icon, and the last two integers specify
the coordinates of the lower-right corner of the icon.
Modifiable? Yes
But where's this 'Boundary Rectangle' data type, and other 'data types'
defined?
Mostly likely in "MacTypes.h".
struct Point {
short v;
short h;
};
typedef struct Point Point;
typedef Point * PointPtr;
struct Rect {
short top;
short left;
short bottom;
short right;
};
typedef struct Rect Rect;
typedef Rect * RectPtr;
struct FixedPoint {
Fixed x;
Fixed y;
};
typedef struct FixedPoint FixedPoint;
struct FixedRect {
Fixed left;
Fixed top;
Fixed right;
Fixed bottom;
};
typedef struct FixedRect FixedRect;
Philip Aker
http://www.aker.ca
'
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.