SetAllowsAntialiasing() 공개 메소드

public SetAllowsAntialiasing ( bool allowsAntialiasing ) : void
allowsAntialiasing bool
리턴 void
예제 #1
0
 public CocoaGraphDrawer(CGContext g, int w, int h)
 {
     this.g = g;
     this.w = w;
     this.h = h;
     g.SetAllowsAntialiasing(true);
     g.InterpolationQuality = CGInterpolationQuality.High;
 }