矩形を平行移動します
NSRect NSOffsetRect ( NSRect aRect , float dX , float dY );
解説
矩形を平行移動します。
【aRect】 矩形
【dX】 移動距離X
【dY】 移動距離Y
返り値
引数
( NSRect )aRect
( float )dX
( float )dY
フレームワーク
Foundation
クラス
NSOffsetRect
Function
使用可能
10.0
参照
NSDivideRect
NSInsetRect
NSIntegralRect
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSRect rect = NSMakeRect(100,100,100,100); NSRect newRect; [image lockFocus]; [[NSColor blueColor] set]; NSRectFill(rect); newRect = NSOffsetRect(rect,10,10); [[NSColor yellowColor] set]; NSRectFill(newRect); [image unlockFocus]; } @end