Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xfillarc(3) [hpux man page]

XFillArc()																XFillArc()

Name
  XFillArc - fill an arc.

Synopsis
  XFillArc(display, drawable, gc,  x, y, width, height, angle1, angle2)
	Display *display;
	Drawable drawable;
	GC gc;
	int x, y;
	unsigned int width, height;
	int angle1, angle2;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  drawable  Specifies the drawable.

  gc	    Specifies the graphics context.

  x	    Specify  the  x  and y coordinates of the upper-left corner of the bounding box containing the arc, relative to the origin of the
  y	    drawable.

  width     Specify the width and height in pixels.  These are the major and minor axes of the arc.
  height
  angle1    Specifies the start of the arc relative to the three-o'clock position from the center.  Angles are specified in 64ths of degrees.

  angle2    Specifies the path and extent of the arc relative to the start of the arc.	Angles are specified in 64ths of degrees.

Description
  XFillArc() draws a filled arc.  The x, y, width, and height arguments specify the bounding  box  for	the  arc.   See  XDrawArc()  for  the
  description  of  how this bounding box is used to compute the arc.  Some, but not all, of the pixels drawn with XDrawArc() will be drawn by
  XFillArc() with the same arguments.  See XFillRectangle() for an example of the differences in pixels drawn by the draw and fill routines.

  The arc forms one boundary of the area to be filled.	The other boundary is determined by the arc_mode in the GC.  If the arc_mode  in  the
  GC  is  ArcChord, the single line segment joining the endpoints of the arc is used.  If ArcPieSlice, the two line segments joining the end-
  points of the arc with the center point are used.

  XFillArc() uses these graphics context components:  function, plane_mask, fill_style, arc_mode, subwindow_mode, clip_x_origin,  clip_y_ori-
  gin,	and  clip_mask.   This	function  also uses these graphics context mode-dependent components:  foreground, background, tile, stipple,
  ts_x_origin,								 and								ts_y_
  origin.

  For more information, see Volume One, Chapter 6, Drawing Graphics and Text, and Chapter 5, The Graphics Context.

Errors
  BadDrawable
  BadGC
  BadMatch

See Also
  XClearArea(),  XClearWindow(),  XCopyArea(), XCopyPlane(), XDraw, XDrawArc(), XDrawArcs(), XDrawFilled(), XDrawLine(), XDrawLines(), XDraw-
  Point(), XDrawPoints(), XDrawRectangle(), XDrawRectangles(), XDrawSegments(), XFillArcs(), XFillPolygon(),  XFillRectangle(),  XFillRectan-
  gles().

Xlib - Drawing Primitives														XFillArc()

Check Out this Related Man Page

XDrawPoints()															     XDrawPoints()

Name
  XDrawPoints - draw multiple points.

Synopsis
  XDrawPoints(display, drawable, gc, points, npoints, mode)
	Display *display;
	Drawable drawable;
	GC gc;
	XPoint *points;
	int npoints;
	int mode;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  drawable  Specifies the drawable.

  gc	    Specifies the graphics context.

  points    Specifies a pointer to an array of XPoint structures containing the positions of the points.

  npoints   Specifies the number of points to be drawn.

  mode	    Specifies  the  coordinate mode. CoordModeOrigin treats all coordinates as relative to the origin, while CoordModePrevious treats
	    all coordinates after the first as relative to the previous point, while the first is still relative to the origin.

Description
  XDrawPoints() draws one or more points into the specified drawable.  XDrawPoints() draws the points in the order listed in the array.

  In R4 and earlier, because of the maximum request size, there is a limit to the number of points that can  be  drawn	in  a  single  XDraw-
  Points()  call,  that  varies according to the server.  In R5, Xlib breaks the call up into as many requests as required.  To determine how
  many points you can draw in a single call in R4, you find out your server's maximum request size using XMaxRequestSize().   Subtract	three
  and this is the maximum number of points you can draw in a single XDrawPoints() call.

  XDrawPoints()  uses  these graphics context components: function, plane_mask, foreground, subwindow_mode, clip_x_origin, clip_y_origin, and
  clip_mask.

  For more information, see Volume One, Chapter 6, Drawing Graphics and Text, and Chapter 5, The Graphics Context.

Structures
     typedef struct {
	 short x, y;
     } XPoint;

Errors
  BadDrawable
  BadGC
  BadMatch
  BadValue

See Also
  XClearArea(), XClearWindow(), XCopyArea(), XCopyPlane(), XDraw, XDrawArc(), XDrawArcs(), XDrawFilled(), XDrawLine(),	XDrawLines(),  XDraw-
  Points(),  XDrawRectangle(),	XDrawRectangles(),  XDrawSegments(),  XFillArc(), XFillArcs(), XFillPolygon(), XFillRectangle(), XFillRectan-
  gles().

Xlib - Drawing Primitives													     XDrawPoints()
Man Page