Dev/iOS

[Objective-C] CGRect, CGPoint, CGSize

놀란 2011. 7. 20. 12:43

/* Points. */


struct CGPoint {

  CGFloat x;

  CGFloat y;

};

typedef struct CGPoint CGPoint;


/* Sizes. */


struct CGSize {

  CGFloat width;

  CGFloat height;

};

typedef struct CGSize CGSize;


/* Rectangles. */


struct CGRect {

  CGPoint origin;

  CGSize size;

};

typedef struct CGRect CGRect;