summaryrefslogtreecommitdiffstats
path: root/gfx/cairo/cairo/src/cairo-arc-private.h
blob: e8dcc1394f6b7985c77c1e23cd282b8aa15b98d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef CAIRO_ARC_PRIVATE_H
#define CAIRO_ARC_PRIVATE_H

#include "cairoint.h"

cairo_private void
_cairo_arc_path (cairo_t *cr,
		 double	  xc,
		 double	  yc,
		 double	  radius,
		 double	  angle1,
		 double	  angle2);

cairo_private void
_cairo_arc_path_negative (cairo_t *cr,
			  double   xc,
			  double   yc,
			  double   radius,
			  double   angle1,
			  double   angle2);

#endif /* CAIRO_ARC_PRIVATE_H */