NSBezierPath:bezierPath
Home 目次>ApplicationKit>NSBezierPath

bezierPath

新しくベジエパスオブジェクトを作って返します


+(NSBezierPath *) bezierPath


【返り値】
   NSBezierPath *ベジエパス


【解説】

新しくベジエパスオブジェクト(NSBezierPath)を作って返します。
初期状態はカラで何も描かれていません。



【例文】


NSBezierPath *path = [NSBezierPath bezierPath];
///
//NSViewのサブクラス MyViewのDrawRectに上書き
-(void)drawRect:(NSRect)rect
{

NSBezierPath *thePath = [NSBezierPath bezierPath];

[thePath moveToPoint:NSMakePoint(20,20)];
[thePath lineToPoint:NSMakePoint(120,120)];

[[NSColor redColor] set];

[thePath stroke];


}


(C) 2000-2007 Satoshi Oomori.
[Apple]

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

この記事を評価してください。 

良い 

間違いがある 説明がわかりにくい 例文がわかりにくい  

Home 目次>ApplicationKit>NSBezierPath
修正日2006.12.26