summaryrefslogtreecommitdiff
path: root/src/painter/color.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/painter/color.c')
-rw-r--r--src/painter/color.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/painter/color.c b/src/painter/color.c
index 65c4f20..bf03359 100644
--- a/src/painter/color.c
+++ b/src/painter/color.c
@@ -1,6 +1,13 @@
1#include "painter/color.h" 1#include "painter/color.h"
2#include <math.h> 2#include <math.h>
3 3
4/**
5 * File: color.c
6 *
7 * Author:
8 * Pacien TRAN-GIRARD
9 */
10
4static inline ColorComponent blend_component(ColorComponent origin, ColorComponent target, TimeVector frame) { 11static inline ColorComponent blend_component(ColorComponent origin, ColorComponent target, TimeVector frame) {
5 return (ColorComponent) round(sqrt((TIME_UNIT - frame) * pow(origin, 2) + frame * pow(target, 2))); 12 return (ColorComponent) round(sqrt((TIME_UNIT - frame) * pow(origin, 2) + frame * pow(target, 2)));
6} 13}