]> granicus.if.org Git - graphviz/commitdiff
document pie stuff
authorellson <devnull@localhost>
Fri, 28 Jan 2005 21:07:26 +0000 (21:07 +0000)
committerellson <devnull@localhost>
Fri, 28 Jan 2005 21:07:26 +0000 (21:07 +0000)
tclpkg/gdtclft/gdtclft.n

index f38b56248db8c99b965be5da48e50c7d033d9723..c33d9c57a6c23cae7295903274686ce0365ac34f 100644 (file)
@@ -169,10 +169,30 @@ Reference
           Draw the outline of (resp. fill) a rectangle in color <color_idx>
           with corners at (x1,y1) and (x2,y2).
           
-   gd arc <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
-          Draw an arc in color <color_idx>, centered at (cx,cy) in a rectangle width
-          x height, starting at start degrees and ending at end degrees.
-          start must be > end.
+   gd arc       <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd fillarc   <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd openarc   <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd chord     <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd fillchord <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd openchord <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd pie       <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd fillpie   <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+   gd openpie   <gdhandle> <color_idx> <cx> <cy> <width> <height> <start> <end>
+          All describe an arc based shape in color <color_idx>, centered at (cx,cy)
+         in a rectangle width x height, starting at start degrees and ending
+         at end degrees.
+
+         arc       - Just the curved line.
+         fillarc   - (Intented to be a fill between the curve and chord,
+                     but gd doesn't do that) - Same as pie.
+         openarc   - Outline shape with curve and chord.
+         chord     - Straight line chord between the ends of the curve,
+                     but without showing the curve.
+         fillchord - Filled triangle between chord and center.
+         openchord - Outline triangle between chord and center.
+         pie       - Filled pie segment between curve and center.
+         fillpie   - Same as pie.
+         openpie   - Outline pie segment between curve and center.
           
    gd polygon <gdhandle> <color_idx> <x1> <y1> ...