1
/*
2
 * Copyright © 2011 Intel Corporation
3
 *
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use, copy,
8
 * modify, merge, publish, distribute, sublicense, and/or sell copies
9
 * of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be
13
 * included in all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 * SOFTWARE.
23
 *
24
 * Author: Chris Wilson <chris@chris-wilson.co.uk>
25
 */
26

            
27
/* A general convex shape with a twist. */
28

            
29
#include "cairo-test.h"
30

            
31
#define SIZE		(100)
32
#define PAD 4
33

            
34
static void
35
6
limacon (cairo_t *cr, double a, double b, double radius)
36
{
37
    int i;
38

            
39
6
    cairo_save (cr);
40
6
    cairo_translate (cr, PAD, 0);
41
2166
    for (i = 0; i < 360; i++) {
42
2160
	double theta = i * M_PI / 180;
43
2160
	double r = b + a * cos (theta);
44
2160
	double x = radius * r * cos (theta);
45
2160
	double y = radius * r * sin (theta);
46
2160
	cairo_line_to (cr, x, y);
47
    }
48
6
    cairo_close_path (cr);
49
6
    cairo_restore (cr);
50
6
}
51

            
52
static cairo_test_status_t
53
3
draw (cairo_t *cr, int width, int height)
54
{
55
3
    cairo_set_source_rgb (cr, 1, 1, 1);
56
3
    cairo_paint (cr);
57

            
58
3
    cairo_save (cr);
59
3
    cairo_translate (cr, 2*PAD, PAD);
60

            
61
3
    cairo_translate (cr, SIZE/2, SIZE/2);
62
3
    limacon (cr, 1, .5, SIZE/3); /* trivia, this is a trisectrix */
63

            
64
3
    cairo_set_source_rgb (cr, 1, 0, 0);
65
3
    cairo_fill_preserve (cr);
66

            
67
3
    cairo_set_source_rgb (cr, 0, 0, 0);
68
3
    cairo_stroke (cr);
69

            
70
3
    cairo_scale (cr, -1, 1);
71

            
72
3
    limacon (cr, 1, .5, SIZE/3); /* trivia, this is a trisectrix */
73

            
74
3
    cairo_set_source_rgb (cr, 0, 0, 1);
75
3
    cairo_fill_preserve (cr);
76

            
77
3
    cairo_set_source_rgb (cr, 0, 0, 0);
78
3
    cairo_stroke (cr);
79

            
80
3
    return CAIRO_TEST_SUCCESS;
81
}
82

            
83
1
CAIRO_TEST (shape_general_convex,
84
	    "A general shape that is not as convex as it first appears",
85
	    "fill,stroke", /* keywords */
86
	    NULL, /* requirements */
87
	    SIZE+4*PAD, SIZE+4*PAD,
88
	    NULL, draw)