• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Bounding Rectangle
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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.

References: 
 >Re: Bounding Rectangle (From: Paul Berkowitz <email@hidden>)

  • Prev by Date: Re: Extracting data from a spreadsheet
  • Next by Date: Re: scripting mail
  • Previous by thread: Re: Bounding Rectangle
  • Next by thread: Re: Bounding Rectangle
  • Index(es):
    • Date
    • Thread