summaryrefslogtreecommitdiff
path: root/include/painter/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/painter/color.h')
-rw-r--r--include/painter/color.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/painter/color.h b/include/painter/color.h
index ea41faf..4a97f50 100644
--- a/include/painter/color.h
+++ b/include/painter/color.h
@@ -32,28 +32,28 @@ typedef union {
32 32
33/** 33/**
34 * Function: color_equals 34 * Function: color_equals
35 * Compares the supplied colors. 35 * Compares the supplied colours.
36 * 36 *
37 * Parameters: 37 * Parameters:
38 * c1 - the first color 38 * c1 - the first colour
39 * c2 - the second color 39 * c2 - the second colour
40 * 40 *
41 * Returns: 41 * Returns:
42 * T(c1 is the same color as c2) 42 * T(c1 is the same colour as c2)
43 */ 43 */
44bool color_equals(Color c1, Color c2); 44bool color_equals(Color c1, Color c2);
45 45
46/** 46/**
47 * Function: color_blend 47 * Function: color_blend
48 * Blends two colors. 48 * Blends two colours.
49 * 49 *
50 * Parameters: 50 * Parameters:
51 * origin - the first color 51 * origin - the first colour
52 * target - the second color 52 * target - the second colour
53 * distance - the distance from the first color 53 * distance - the distance from the first colour
54 * 54 *
55 * Returns: 55 * Returns:
56 * The blended color 56 * The blended colour
57 */ 57 */
58Color color_blend(Color origin, Color target, TimeVector distance); 58Color color_blend(Color origin, Color target, TimeVector distance);
59 59