EOFillPath() 공개 메소드

public EOFillPath ( ) : void
리턴 void
예제 #1
0
 public static void EOFillPath(CGContext context, CGPath path, CGColor color)
 {
     context.SaveState();
     context.SetFillColor(color);
     context.AddPath(path);
     context.EOFillPath();
     context.RestoreState();
 }