diff options
author | pacien | 2017-12-29 21:34:10 +0100 |
---|---|---|
committer | pacien | 2017-12-29 21:34:10 +0100 |
commit | e275a679a1fb9377dd1a74329420ce6e95a03da3 (patch) | |
tree | a316473a6dd2026d21acbc77ce98f9c68f722855 /include/painter/color.h | |
parent | 00eb3d02d350b7dd28afabfa160304dff4d5efb7 (diff) | |
download | morpher-e275a679a1fb9377dd1a74329420ce6e95a03da3.tar.gz |
Small doc fixes
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'include/painter/color.h')
-rw-r--r-- | include/painter/color.h | 18 |
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 | */ |
44 | bool color_equals(Color c1, Color c2); | 44 | bool 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 | */ |
58 | Color color_blend(Color origin, Color target, TimeVector distance); | 58 | Color color_blend(Color origin, Color target, TimeVector distance); |
59 | 59 | ||