コード例 #1
0
ファイル: Drawable.cs プロジェクト: jbnivoit/projects
 /**
    * @see #poly_arc(GC, Arc[], bool)
    */
 public void arc(GC gc, Arc arc, bool fill)
 {
     poly_arc (gc, new Arc [] {arc}, fill);
 }
コード例 #2
0
ファイル: Drawable.cs プロジェクト: jbnivoit/projects
 // opcode 68 and 71 - poly (fill) arc
 /**
    * This request will be aggregated.
    *
    * @see <a href="XDrawArcs.html">XDrawArcs</a>
    * @see <a href="XFillArcs.html">XFillArcs</a>
    * @see Request.Aggregate aggregation
    */
 public void poly_arc(GC gc, Arc [] arcs, bool fill)
 {
     display.send_request (new Request.Poly.Arc (
       this, gc, arcs, fill));
 }